FormRecognizerClient Constructors

Definition

Overloads

FormRecognizerClient()

Initializes a new instance of the FormRecognizerClient class.

FormRecognizerClient(Uri, AzureKeyCredential)

Initializes a new instance of the FormRecognizerClient class.

FormRecognizerClient(Uri, TokenCredential)

Initializes a new instance of the FormRecognizerClient class.

FormRecognizerClient(Uri, AzureKeyCredential, FormRecognizerClientOptions)

Initializes a new instance of the FormRecognizerClient class.

FormRecognizerClient(Uri, TokenCredential, FormRecognizerClientOptions)

Initializes a new instance of the FormRecognizerClient class.

FormRecognizerClient()

Source:
FormRecognizerClient.cs

Initializes a new instance of the FormRecognizerClient class.

protected FormRecognizerClient ();
Protected Sub New ()

Applies to

FormRecognizerClient(Uri, AzureKeyCredential)

Source:
FormRecognizerClient.cs

Initializes a new instance of the FormRecognizerClient class.

public FormRecognizerClient (Uri endpoint, Azure.AzureKeyCredential credential);
new Azure.AI.FormRecognizer.FormRecognizerClient : Uri * Azure.AzureKeyCredential -> Azure.AI.FormRecognizer.FormRecognizerClient
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

FormRecognizerClient(Uri, TokenCredential)

Source:
FormRecognizerClient.cs

Initializes a new instance of the FormRecognizerClient class.

public FormRecognizerClient (Uri endpoint, Azure.Core.TokenCredential credential);
new Azure.AI.FormRecognizer.FormRecognizerClient : Uri * Azure.Core.TokenCredential -> Azure.AI.FormRecognizer.FormRecognizerClient
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

FormRecognizerClient(Uri, AzureKeyCredential, FormRecognizerClientOptions)

Source:
FormRecognizerClient.cs

Initializes a new instance of the FormRecognizerClient class.

public FormRecognizerClient (Uri endpoint, Azure.AzureKeyCredential credential, Azure.AI.FormRecognizer.FormRecognizerClientOptions options);
new Azure.AI.FormRecognizer.FormRecognizerClient : Uri * Azure.AzureKeyCredential * Azure.AI.FormRecognizer.FormRecognizerClientOptions -> Azure.AI.FormRecognizer.FormRecognizerClient
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

FormRecognizerClient(Uri, TokenCredential, FormRecognizerClientOptions)

Source:
FormRecognizerClient.cs

Initializes a new instance of the FormRecognizerClient class.

public FormRecognizerClient (Uri endpoint, Azure.Core.TokenCredential credential, Azure.AI.FormRecognizer.FormRecognizerClientOptions options);
new Azure.AI.FormRecognizer.FormRecognizerClient : Uri * Azure.Core.TokenCredential * Azure.AI.FormRecognizer.FormRecognizerClientOptions -> Azure.AI.FormRecognizer.FormRecognizerClient
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