1
0
mirror of synced 2024-11-15 01:33:51 +00:00
PettingZoo/PettingZoo.RabbitMQ/RabbitMQPropertiesExtensions.cs

15 lines
378 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace PettingZoo.RabbitMQ
{
public static class RabbitMQPropertiesExtensions
{
public static string ContentType(this IDictionary<string, string> properties)
{
return properties.TryGetValue(RabbitMQProperties.ContentType, out var value)
? value
: "";
}
}
}