Class AzureServiceBusTransportMetadata
Represents the metadata of the MassTransit transport using an Azure Service Bus message broker.
Namespace: Copper.Eventing.MassTransit.Common.V1
Assembly: Copper.Eventing.MassTransit.Common.dll
Syntax
[DataContract]
public class AzureServiceBusTransportMetadata : TransportMetadata
Properties
View SourceAutoDeleteOnIdle
Gets or sets the System.TimeSpan idle interval after which the queue/topic is automatically deleted. The minimum duration is 5 minutes.
Declaration
[DataMember]
public TimeSpan AutoDeleteOnIdle { get; set; }
Property Value
Type | Description |
---|---|
System.TimeSpan | The auto delete on idle time span for the queue/topic. |
ConnectionString
Gets or sets the connection string to use for connecting to the Service Bus namespace.
Declaration
[DataMember]
public string ConnectionString { get; set; }
Property Value
Type | Description |
---|---|
System.String | The connection string to use for connecting to the Service Bus namespace. |
Serializer
Gets or sets the MassTransit serializer to use.
Declaration
[DataMember]
public string Serializer { get; set; }
Property Value
Type | Description |
---|---|
System.String | The MassTransit serializer to use. |