Share via


FormTrainingClient Constructors

Definition

Overloads

FormTrainingClient()

Initializes a new instance of the FormTrainingClient class.

FormTrainingClient(Uri, AzureKeyCredential)

Initializes a new instance of the FormTrainingClient class.

FormTrainingClient(Uri, TokenCredential)

Initializes a new instance of the FormTrainingClient class.

FormTrainingClient(Uri, AzureKeyCredential, FormRecognizerClientOptions)

Initializes a new instance of the FormTrainingClient class.

FormTrainingClient(Uri, TokenCredential, FormRecognizerClientOptions)

Initializes a new instance of the FormTrainingClient class.

FormTrainingClient()

Source:
FormTrainingClient.cs

Initializes a new instance of the FormTrainingClient class.

protected FormTrainingClient ();
Protected Sub New ()

Applies to

FormTrainingClient(Uri, AzureKeyCredential)

Source:
FormTrainingClient.cs

Initializes a new instance of the FormTrainingClient class.

public FormTrainingClient (Uri endpoint, Azure.AzureKeyCredential credential);
new Azure.AI.FormRecognizer.Training.FormTrainingClient : Uri * Azure.AzureKeyCredential -> Azure.AI.FormRecognizer.Training.FormTrainingClient
Public Sub New (endpoint As Uri, credential As AzureKeyCredential)

Parameters

endpoint
Uri

The endpoint to use for connecting to the Form Recognizer Azure Cognitive Service.

credential
AzureKeyCredential

A credential used to authenticate to an Azure Service.

Remarks

Both the endpoint URI string and the credentialstring key can be found in the Azure Portal. For more information see here.

Applies to

FormTrainingClient(Uri, TokenCredential)

Source:
FormTrainingClient.cs

Initializes a new instance of the FormTrainingClient class.

public FormTrainingClient (Uri endpoint, Azure.Core.TokenCredential credential);
new Azure.AI.FormRecognizer.Training.FormTrainingClient : Uri * Azure.Core.TokenCredential -> Azure.AI.FormRecognizer.Training.FormTrainingClient
Public Sub New (endpoint As Uri, credential As TokenCredential)

Parameters

endpoint
Uri

The endpoint to use for connecting to the Form Recognizer Azure Cognitive Service.

credential
TokenCredential

A credential used to authenticate to an Azure Service.

Remarks

The endpoint URI string can be found in the Azure Portal. For more information see here.

Applies to

FormTrainingClient(Uri, AzureKeyCredential, FormRecognizerClientOptions)

Source:
FormTrainingClient.cs

Initializes a new instance of the FormTrainingClient class.

public FormTrainingClient (Uri endpoint, Azure.AzureKeyCredential credential, Azure.AI.FormRecognizer.FormRecognizerClientOptions options);
new Azure.AI.FormRecognizer.Training.FormTrainingClient : Uri * Azure.AzureKeyCredential * Azure.AI.FormRecognizer.FormRecognizerClientOptions -> Azure.AI.FormRecognizer.Training.FormTrainingClient
Public Sub New (endpoint As Uri, credential As AzureKeyCredential, options As FormRecognizerClientOptions)

Parameters

endpoint
Uri

The endpoint to use for connecting to the Form Recognizer Azure Cognitive Service.

credential
AzureKeyCredential

A credential used to authenticate to an Azure Service.

options
FormRecognizerClientOptions

A set of options to apply when configuring the client.

Remarks

Both the endpoint URI string and the credentialstring key can be found in the Azure Portal. For more information see here.

Applies to

FormTrainingClient(Uri, TokenCredential, FormRecognizerClientOptions)

Source:
FormTrainingClient.cs

Initializes a new instance of the FormTrainingClient class.

public FormTrainingClient (Uri endpoint, Azure.Core.TokenCredential credential, Azure.AI.FormRecognizer.FormRecognizerClientOptions options);
new Azure.AI.FormRecognizer.Training.FormTrainingClient : Uri * Azure.Core.TokenCredential * Azure.AI.FormRecognizer.FormRecognizerClientOptions -> Azure.AI.FormRecognizer.Training.FormTrainingClient
Public Sub New (endpoint As Uri, credential As TokenCredential, options As FormRecognizerClientOptions)

Parameters

endpoint
Uri

The endpoint to use for connecting to the Form Recognizer Azure Cognitive Service.

credential
TokenCredential

A credential used to authenticate to an Azure Service.

options
FormRecognizerClientOptions

A set of options to apply when configuring the client.

Remarks

The endpoint URI string can be found in the Azure Portal. For more information see here.

Applies to