/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit/Middleware/OutboxMessageContext.cs
23 строки
434 B
Chris Patterson
Added the supported message types to the outbox table (update your migrations for EF Core) and use the outbox message properties to initialize the send context.
06 июл 2023, 03:28
06 июл 2023, 03:28
8c5efb9
Код
Авторство
О чём код?
#nullable enable namespace MassTransit.Middleware { using System; using System.Collections.Generic; public interface OutboxMessageContext : MessageContext { long SequenceNumber { get; } new Guid MessageId { get; } string ContentType { get; } string MessageType { get; } string Body { get; } IReadOnlyDictionary<string, object> Properties { get; } } }