NServiceBus.BatchDispatchContext.BatchDispatchContext C# (CSharp) Method

BatchDispatchContext() public method

public BatchDispatchContext ( IReadOnlyCollection operations, IBehaviorContext parentContext ) : System.Collections.Generic
operations IReadOnlyCollection
parentContext IBehaviorContext
return System.Collections.Generic
        public BatchDispatchContext(IReadOnlyCollection<TransportOperation> operations, IBehaviorContext parentContext)
            : base(parentContext)
        {
            Operations = operations;
        }
BatchDispatchContext