Class AzureServiceBusConnectionOptions
- Namespace
- Pipelinez.AzureServiceBus.Configuration
- Assembly
- Pipelinez.AzureServiceBus.dll
Configures how Pipelinez creates Azure Service Bus clients.
public sealed class AzureServiceBusConnectionOptions
- Inheritance
-
AzureServiceBusConnectionOptions
- Inherited Members
Properties
ClientOptions
Gets or sets optional Azure Service Bus client options.
public ServiceBusClientOptions? ClientOptions { get; set; }
Property Value
ConnectionString
Gets or sets the Azure Service Bus connection string.
public string? ConnectionString { get; set; }
Property Value
Credential
Gets or sets the token credential used with FullyQualifiedNamespace.
public TokenCredential? Credential { get; set; }
Property Value
FullyQualifiedNamespace
Gets or sets the fully qualified namespace used with token-based authentication.
public string? FullyQualifiedNamespace { get; set; }
Property Value
Examples
contoso.servicebus.windows.net
Methods
Validate()
Validates the connection options and returns the same instance when valid.
public AzureServiceBusConnectionOptions Validate()
Returns
- AzureServiceBusConnectionOptions
The validated options instance.