NServiceBus.OutgoingPhysicalMessageContext.OutgoingPhysicalMessageContext C# (CSharp) Method

OutgoingPhysicalMessageContext() public method

public OutgoingPhysicalMessageContext ( byte body, IReadOnlyCollection routingStrategies, IOutgoingLogicalMessageContext parentContext ) : System.Collections.Generic
body byte
routingStrategies IReadOnlyCollection
parentContext IOutgoingLogicalMessageContext
return System.Collections.Generic
        public OutgoingPhysicalMessageContext(byte[] body, IReadOnlyCollection<RoutingStrategy> routingStrategies, IOutgoingLogicalMessageContext parentContext)
            : base(parentContext.MessageId, parentContext.Headers, parentContext)
        {
            Body = body;
            RoutingStrategies = routingStrategies;
        }