MicrosoftFormsClient Constructors

Definition

Overloads

Name Description
MicrosoftFormsClient()
MicrosoftFormsClient(String)

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

MicrosoftFormsClient(Uri)

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

MicrosoftFormsClient(Uri, TokenCredential)

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

MicrosoftFormsClient(Uri, TokenCredential, ConnectorClientOptions)

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

MicrosoftFormsClient()

protected MicrosoftFormsClient();
Protected Sub New ()

Applies to

MicrosoftFormsClient(String)

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

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

Parameters

connectionRuntimeUrl
String

The connection runtime URL from Azure Portal.

Applies to

MicrosoftFormsClient(Uri)

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

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

Parameters

connectionRuntimeUrl
Uri

The connection runtime URL from Azure Portal.

Applies to

MicrosoftFormsClient(Uri, TokenCredential)

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

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

MicrosoftFormsClient(Uri, TokenCredential, ConnectorClientOptions)

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

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