TopicClient.CreateWithManagedIdentity Method

Definition

Creates a new instance of the TopicClient by using Azure Managed Identity authentication.

public static Microsoft.ServiceBus.Messaging.TopicClient CreateWithManagedIdentity (Uri endpointAddress, string path, TimeSpan? operationTimeout = default, Microsoft.ServiceBus.Messaging.TransportType transportType = Microsoft.ServiceBus.Messaging.TransportType.NetMessaging);
static member CreateWithManagedIdentity : Uri * string * Nullable<TimeSpan> * Microsoft.ServiceBus.Messaging.TransportType -> Microsoft.ServiceBus.Messaging.TopicClient
Public Shared Function CreateWithManagedIdentity (endpointAddress As Uri, path As String, Optional operationTimeout As Nullable(Of TimeSpan) = Nothing, Optional transportType As TransportType = Microsoft.ServiceBus.Messaging.TransportType.NetMessaging) As TopicClient

Parameters

endpointAddress
Uri

Fully qualified domain name for Service Bus. Most likely, {yournamespace}.servicebus.windows.net

path
String

The path to the topic.

operationTimeout
Nullable<TimeSpan>

TimeSpan that specifies how long the messaging operation has to complete before timing out

transportType
TransportType

Messaging transport type.

Returns

The created TopicClient.

Applies to