Chinchilla.Delivery.Delivery C# (CSharp) Метод

Delivery() публичный Метод

public Delivery ( ulong tag, byte body, string routingKey, string exchange, string contentType, string correlationId, string replyTo, object>.IDictionary headers ) : System
tag ulong
body byte
routingKey string
exchange string
contentType string
correlationId string
replyTo string
headers object>.IDictionary
Результат System
        public Delivery(
            ulong tag,
            byte[] body,
            string routingKey,
            string exchange,
            string contentType,
            string correlationId,
            string replyTo,
            IDictionary<string, object> headers)
        {
            Tag = tag;
            Body = body;
            RoutingKey = routingKey;
            Exchange = exchange;
            ContentType = contentType;
            CorrelationId = correlationId;
            ReplyTo = replyTo;
            Headers = headers;
        }