/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit/JsonMessageBody.cs
12 строк
308 B
Chris Patterson
Fixed #4510 - Properly handle cross-region or SNS deliveries that are wrapped in an SNS envelope when deserializing using System.Text.Json only.
02 май 2024, 17:52
02 май 2024, 17:52
1d640dc
Код
Авторство
О чём код?
namespace MassTransit; using System.Text.Json; /// <summary> /// If the incoming message is in a JSON format, use this to unwrap the JSON document from any transport-specific encapsulation /// </summary> public interface JsonMessageBody { JsonElement? GetJsonElement(JsonSerializerOptions options); }