SubscriptionClient.CreateWithManagedIdentity Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new instance of the SubscriptionClient by using Azure Managed Identity authentication.
public static Microsoft.ServiceBus.Messaging.SubscriptionClient CreateWithManagedIdentity (Uri endpointAddress, string topicPath, string name, 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 CreateWithManagedIdentity : Uri * string * string * Microsoft.ServiceBus.Messaging.ReceiveMode * Nullable<TimeSpan> * Microsoft.ServiceBus.Messaging.TransportType -> Microsoft.ServiceBus.Messaging.SubscriptionClient
Public Shared Function CreateWithManagedIdentity (endpointAddress As Uri, topicPath As String, name 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 SubscriptionClient
Parameters
- endpointAddress
- Uri
Fully qualified domain name for Service Bus. Most likely, {yournamespace}.servicebus.windows.net
- topicPath
- String
The full pathname of the topic.
- name
- String
The name of the subscription.
- mode
- ReceiveMode
The receive mode.
TimeSpan that specifies how long the messaging operation has to complete before timing out
- transportType
- TransportType
Messaging transport type.
Returns
The created SubscriptionClient.
Applies to
Azure SDK for .NET