RepliconClient Constructors
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.
Overloads
| Name | Description |
|---|---|
| RepliconClient() | |
| RepliconClient(String) |
Creates a new RepliconClient with the specified connection runtime URL string. Uses ManagedIdentityCredential by default. |
| RepliconClient(Uri) |
Creates a new RepliconClient with the specified connection runtime URL. Uses ManagedIdentityCredential by default. |
| RepliconClient(Uri, TokenCredential) |
Creates a new RepliconClient with the specified connection runtime URL and credential. |
| RepliconClient(Uri, TokenCredential, ConnectorClientOptions) |
Creates a new RepliconClient with the specified connection runtime URL and credential. |
RepliconClient()
protected RepliconClient();
Protected Sub New ()
Applies to
RepliconClient(String)
Creates a new RepliconClient with the specified connection runtime URL string. Uses ManagedIdentityCredential by default.
public RepliconClient(string connectionRuntimeUrl);
new Azure.Connectors.Sdk.Replicon.RepliconClient : string -> Azure.Connectors.Sdk.Replicon.RepliconClient
Public Sub New (connectionRuntimeUrl As String)
Parameters
- connectionRuntimeUrl
- String
The connection runtime URL from Azure Portal.
Applies to
RepliconClient(Uri)
Creates a new RepliconClient with the specified connection runtime URL. Uses ManagedIdentityCredential by default.
public RepliconClient(Uri connectionRuntimeUrl);
new Azure.Connectors.Sdk.Replicon.RepliconClient : Uri -> Azure.Connectors.Sdk.Replicon.RepliconClient
Public Sub New (connectionRuntimeUrl As Uri)
Parameters
- connectionRuntimeUrl
- Uri
The connection runtime URL from Azure Portal.
Applies to
RepliconClient(Uri, TokenCredential)
Creates a new RepliconClient with the specified connection runtime URL and credential.
public RepliconClient(Uri connectionRuntimeUrl, Azure.Core.TokenCredential credential);
new Azure.Connectors.Sdk.Replicon.RepliconClient : Uri * Azure.Core.TokenCredential -> Azure.Connectors.Sdk.Replicon.RepliconClient
Public Sub New (connectionRuntimeUrl As Uri, credential As TokenCredential)
Parameters
- connectionRuntimeUrl
- Uri
The connection runtime URL from Azure Portal.
- credential
- TokenCredential
The Azure credential for authentication.
Applies to
RepliconClient(Uri, TokenCredential, ConnectorClientOptions)
Creates a new RepliconClient with the specified connection runtime URL and credential.
public RepliconClient(Uri connectionRuntimeUrl, Azure.Core.TokenCredential credential, Azure.Connectors.Sdk.ConnectorClientOptions options = default);
new Azure.Connectors.Sdk.Replicon.RepliconClient : Uri * Azure.Core.TokenCredential * Azure.Connectors.Sdk.ConnectorClientOptions -> Azure.Connectors.Sdk.Replicon.RepliconClient
Public Sub New (connectionRuntimeUrl As Uri, credential As TokenCredential, Optional options As ConnectorClientOptions = Nothing)
Parameters
- connectionRuntimeUrl
- Uri
The connection runtime URL from Azure Portal.
- credential
- TokenCredential
The Azure credential for authentication.
- options
- ConnectorClientOptions
Optional client options for retry, timeout, etc.