Class ExchangeDeclaration
Inheritance
ExchangeDeclaration
Assembly: Akka.Streams.Amqp.RabbitMq.dll
Syntax
public sealed class ExchangeDeclaration : IDeclaration
Properties
|
Improve this Doc
View Source
Arguments
Declaration
public IReadOnlyDictionary<string, object> Arguments { get; }
Property Value
|
Improve this Doc
View Source
AutoDelete
Declaration
public bool AutoDelete { get; }
Property Value
|
Improve this Doc
View Source
Durable
Declaration
public bool Durable { get; }
Property Value
|
Improve this Doc
View Source
ExchangeType
Declaration
public string ExchangeType { get; }
Property Value
|
Improve this Doc
View Source
Internal
Declaration
public bool Internal { get; }
Property Value
|
Improve this Doc
View Source
Name
Declaration
public string Name { get; }
Property Value
Methods
|
Improve this Doc
View Source
Create(String, String)
Declaration
public static ExchangeDeclaration Create(string name, string exchangeType)
Parameters
Returns
|
Improve this Doc
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
|
Improve this Doc
View Source
WithArguments(KeyValuePair<String, Object>)
Declaration
public ExchangeDeclaration WithArguments(KeyValuePair<string, object> argument)
Parameters
Returns
|
Improve this Doc
View Source
WithArguments(KeyValuePair<String, Object>[])
Declaration
public ExchangeDeclaration WithArguments(params KeyValuePair<string, object>[] arguments)
Parameters
Returns
|
Improve this Doc
View Source
WithArguments(String, Object)
Declaration
public ExchangeDeclaration WithArguments(string key, object value)
Parameters
Returns
|
Improve this Doc
View Source
WithAutoDelete(Boolean)
Declaration
public ExchangeDeclaration WithAutoDelete(bool autoDelete)
Parameters
Type |
Name |
Description |
Boolean |
autoDelete |
|
Returns
|
Improve this Doc
View Source
WithDurable(Boolean)
Declaration
public ExchangeDeclaration WithDurable(bool durable)
Parameters
Type |
Name |
Description |
Boolean |
durable |
|
Returns
|
Improve this Doc
View Source
WithInternal(Boolean)
Declaration
public ExchangeDeclaration WithInternal(bool internal)
Parameters
Type |
Name |
Description |
Boolean |
internal |
|
Returns
Implements