NServiceBus.DispatchContext.DispatchContext C# (CSharp) Method

DispatchContext() public method

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