C# Класс MassTransit.RabbitMqSendContextExtensions

Показать файл Открыть проект

Открытые методы

Метод Описание
SetAwaitAck ( this context, bool awaitAck ) : void

Sets whether the send should wait for the ack from the broker, or if it should return immediately after the message is sent by the client.

SetHeader ( this basicProperties, string key, object value ) : void
SetPriority ( this context, byte priority ) : void

Sets the priority of a message sent to the broker

SetTransportHeader ( this context, string key, object value ) : void

Описание методов

SetAwaitAck() публичный статический Метод

Sets whether the send should wait for the ack from the broker, or if it should return immediately after the message is sent by the client.
public static SetAwaitAck ( this context, bool awaitAck ) : void
context this
awaitAck bool
Результат void

SetHeader() публичный статический Метод

public static SetHeader ( this basicProperties, string key, object value ) : void
basicProperties this
key string
value object
Результат void

SetPriority() публичный статический Метод

Sets the priority of a message sent to the broker
public static SetPriority ( this context, byte priority ) : void
context this
priority byte
Результат void

SetTransportHeader() публичный статический Метод

public static SetTransportHeader ( this context, string key, object value ) : void
context this
key string
value object
Результат void