Share via


DeidentificationClient Constructors

Definition

Overloads

DeidentificationClient()

Initializes a new instance of DeidentificationClient for mocking.

DeidentificationClient(Uri, TokenCredential)

Initializes a new instance of DeidentificationClient.

DeidentificationClient(Uri, TokenCredential, DeidentificationClientOptions)

Initializes a new instance of DeidentificationClient.

DeidentificationClient()

Source:
DeidentificationClient.cs

Initializes a new instance of DeidentificationClient for mocking.

protected DeidentificationClient ();
Protected Sub New ()

Applies to

DeidentificationClient(Uri, TokenCredential)

Source:
DeidentificationClient.cs

Initializes a new instance of DeidentificationClient.

public DeidentificationClient (Uri endpoint, Azure.Core.TokenCredential credential);
new Azure.Health.Deidentification.DeidentificationClient : Uri * Azure.Core.TokenCredential -> Azure.Health.Deidentification.DeidentificationClient
Public Sub New (endpoint As Uri, credential As TokenCredential)

Parameters

endpoint
Uri

Url of your De-identification Service.

credential
TokenCredential

A credential used to authenticate to an Azure Service.

Exceptions

endpoint or credential is null.

Applies to

DeidentificationClient(Uri, TokenCredential, DeidentificationClientOptions)

Source:
DeidentificationClient.cs

Initializes a new instance of DeidentificationClient.

public DeidentificationClient (Uri endpoint, Azure.Core.TokenCredential credential, Azure.Health.Deidentification.DeidentificationClientOptions options);
new Azure.Health.Deidentification.DeidentificationClient : Uri * Azure.Core.TokenCredential * Azure.Health.Deidentification.DeidentificationClientOptions -> Azure.Health.Deidentification.DeidentificationClient
Public Sub New (endpoint As Uri, credential As TokenCredential, options As DeidentificationClientOptions)

Parameters

endpoint
Uri

Url of your De-identification Service.

credential
TokenCredential

A credential used to authenticate to an Azure Service.

options
DeidentificationClientOptions

The options for configuring the client.

Exceptions

endpoint or credential is null.

Applies to