Enum AmqpExchangeType
AMQP exchange type.
[JsonConverter(typeof(JsonStringEnumConverter<AmqpExchangeType>))]
public enum AmqpExchangeType
Fields
[JsonStringEnumMemberName("default")] Default = 3The default (nameless) exchange.
[JsonStringEnumMemberName("direct")] Direct = 1Direct exchange with exact routing key matching.
[JsonStringEnumMemberName("fanout")] Fanout = 2Fanout exchange that broadcasts to all bound queues.
[JsonStringEnumMemberName("headers")] Headers = 4Headers exchange that routes based on message headers.
[JsonStringEnumMemberName("topic")] Topic = 0Topic exchange with pattern-based routing.