Show / Hide Table of Contents

    Class AzureServiceBusTransportMetadata

    Represents the metadata of the MassTransit transport using an Azure Service Bus message broker.

    Inheritance
    System.Object
    TransportMetadata
    AzureServiceBusTransportMetadata
    Namespace: Copper.Eventing.MassTransit.Common.V1
    Assembly: Copper.Eventing.MassTransit.Common.dll
    Syntax
    [DataContract]
    public class AzureServiceBusTransportMetadata : TransportMetadata

    Properties

    View Source

    AutoDeleteOnIdle

    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.

    View Source

    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.

    View Source

    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.

    • View Source
    Back to top Generated by DocFX