WebexClient Constructors

Definition

Overloads

Name Description
WebexClient()
WebexClient(String)

Creates a new WebexClient with the specified connection runtime URL string. Uses ManagedIdentityCredential by default.

WebexClient(Uri)

Creates a new WebexClient with the specified connection runtime URL. Uses ManagedIdentityCredential by default.

WebexClient(Uri, TokenCredential)

Creates a new WebexClient with the specified connection runtime URL and credential.

WebexClient(Uri, TokenCredential, ConnectorClientOptions)

Creates a new WebexClient with the specified connection runtime URL and credential.

WebexClient()

protected WebexClient();
Protected Sub New ()

Applies to

WebexClient(String)

Creates a new WebexClient with the specified connection runtime URL string. Uses ManagedIdentityCredential by default.

public WebexClient(string connectionRuntimeUrl);
new Azure.Connectors.Sdk.Webex.WebexClient : string -> Azure.Connectors.Sdk.Webex.WebexClient
Public Sub New (connectionRuntimeUrl As String)

Parameters

connectionRuntimeUrl
String

The connection runtime URL from Azure Portal.

Applies to

WebexClient(Uri)

Creates a new WebexClient with the specified connection runtime URL. Uses ManagedIdentityCredential by default.

public WebexClient(Uri connectionRuntimeUrl);
new Azure.Connectors.Sdk.Webex.WebexClient : Uri -> Azure.Connectors.Sdk.Webex.WebexClient
Public Sub New (connectionRuntimeUrl As Uri)

Parameters

connectionRuntimeUrl
Uri

The connection runtime URL from Azure Portal.

Applies to

WebexClient(Uri, TokenCredential)

Creates a new WebexClient with the specified connection runtime URL and credential.

public WebexClient(Uri connectionRuntimeUrl, Azure.Core.TokenCredential credential);
new Azure.Connectors.Sdk.Webex.WebexClient : Uri * Azure.Core.TokenCredential -> Azure.Connectors.Sdk.Webex.WebexClient
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

WebexClient(Uri, TokenCredential, ConnectorClientOptions)

Creates a new WebexClient with the specified connection runtime URL and credential.

public WebexClient(Uri connectionRuntimeUrl, Azure.Core.TokenCredential credential, Azure.Connectors.Sdk.ConnectorClientOptions options = default);
new Azure.Connectors.Sdk.Webex.WebexClient : Uri * Azure.Core.TokenCredential * Azure.Connectors.Sdk.ConnectorClientOptions -> Azure.Connectors.Sdk.Webex.WebexClient
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.

Applies to