NServiceBus.OutgoingLogicalMessageContext.OutgoingLogicalMessageContext C# (CSharp) Method

OutgoingLogicalMessageContext() public method

public OutgoingLogicalMessageContext ( string messageId, string>.Dictionary headers, OutgoingLogicalMessage message, IReadOnlyCollection routingStrategies, IBehaviorContext parentContext ) : System.Collections.Generic
messageId string
headers string>.Dictionary
message OutgoingLogicalMessage
routingStrategies IReadOnlyCollection
parentContext IBehaviorContext
return System.Collections.Generic
        public OutgoingLogicalMessageContext(string messageId, Dictionary<string, string> headers, OutgoingLogicalMessage message, IReadOnlyCollection<RoutingStrategy> routingStrategies, IBehaviorContext parentContext)
            : base(messageId, headers, parentContext)
        {
            Message = message;
            RoutingStrategies = routingStrategies;
            Set(message);
        }