QueueClient.CreateWithAzureActiveDirectory Method

Definition

Creates a new instance of the QueueClient by using Azure Active Directory authentication context.

public static Microsoft.ServiceBus.Messaging.QueueClient CreateWithAzureActiveDirectory (Uri endpointAddress, string path, Microsoft.ServiceBus.AzureActiveDirectoryTokenProvider.AuthenticationCallback authCallback, string authority, Microsoft.ServiceBus.Messaging.ReceiveMode mode = Microsoft.ServiceBus.Messaging.ReceiveMode.PeekLock, TimeSpan? operationTimeout = default, Microsoft.ServiceBus.Messaging.TransportType transportType = Microsoft.ServiceBus.Messaging.TransportType.NetMessaging);
static member CreateWithAzureActiveDirectory : Uri * string * Microsoft.ServiceBus.AzureActiveDirectoryTokenProvider.AuthenticationCallback * string * Microsoft.ServiceBus.Messaging.ReceiveMode * Nullable<TimeSpan> * Microsoft.ServiceBus.Messaging.TransportType -> Microsoft.ServiceBus.Messaging.QueueClient
Public Shared Function CreateWithAzureActiveDirectory (endpointAddress As Uri, path As String, authCallback As AzureActiveDirectoryTokenProvider.AuthenticationCallback, authority As String, Optional mode As ReceiveMode = Microsoft.ServiceBus.Messaging.ReceiveMode.PeekLock, Optional operationTimeout As Nullable(Of TimeSpan) = Nothing, Optional transportType As TransportType = Microsoft.ServiceBus.Messaging.TransportType.NetMessaging) As QueueClient

Parameters

endpointAddress
Uri

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

path
String

The path to the queue.

authCallback
AzureActiveDirectoryTokenProvider.AuthenticationCallback

The authentication delegate to provide access token.

authority
String

Address of the authority to issue token.

mode
ReceiveMode

The receive mode.

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 QueueClient.

Applies to