/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/Transports/MassTransit.Azure.ServiceBus.Core/ServiceBusSendContext.cs
43 строки
1 KB
Chris Patterson
Added ReplyTo as a settable property on the ServiceBusSendContext
03 май 2024, 02:39
03 май 2024, 02:39
25d6373
Код
Авторство
О чём код?
namespace MassTransit { using System; public interface ServiceBusSendContext : SendContext, PartitionKeySendContext { /// <summary> /// Set the time at which the message should be enqueued, which is essentially scheduling the message for future delivery to the queue. /// </summary> DateTime? ScheduledEnqueueTimeUtc { set; } /// <summary> /// Set the sessionId of the message /// </summary> string SessionId { set; } /// <summary> /// Set the replyToSessionId of the message /// </summary> string ReplyToSessionId { set; } /// <summary> /// Sets the ReplyTo address of the message /// </summary> string ReplyTo { set; } /// <summary> /// Set the application specific label of the message /// </summary> string Label { set; } } public interface ServiceBusSendContext<out T> : SendContext<T>, ServiceBusSendContext where T : class { } }