WorkflowClient Constructors

Definition

Overloads

WorkflowClient()

Initializes a new instance of WorkflowClient for mocking.

WorkflowClient(Uri, TokenCredential)

Initializes a new instance of WorkflowClient.

WorkflowClient(Uri, TokenCredential, PurviewWorkflowServiceClientOptions)

Initializes a new instance of WorkflowClient.

WorkflowClient()

Source:
WorkflowClient.cs

Initializes a new instance of WorkflowClient for mocking.

protected WorkflowClient ();
Protected Sub New ()

Applies to

WorkflowClient(Uri, TokenCredential)

Source:
WorkflowClient.cs

Initializes a new instance of WorkflowClient.

public WorkflowClient (Uri endpoint, Azure.Core.TokenCredential credential);
new Azure.Analytics.Purview.Workflows.WorkflowClient : Uri * Azure.Core.TokenCredential -> Azure.Analytics.Purview.Workflows.WorkflowClient
Public Sub New (endpoint As Uri, credential As TokenCredential)

Parameters

endpoint
Uri

The account endpoint of your Purview account. Example: https://{accountName}.purview.azure.com/.

credential
TokenCredential

A credential used to authenticate to an Azure Service.

Exceptions

endpoint or credential is null.

Applies to

WorkflowClient(Uri, TokenCredential, PurviewWorkflowServiceClientOptions)

Source:
WorkflowClient.cs

Initializes a new instance of WorkflowClient.

public WorkflowClient (Uri endpoint, Azure.Core.TokenCredential credential, Azure.Analytics.Purview.Workflows.PurviewWorkflowServiceClientOptions options);
new Azure.Analytics.Purview.Workflows.WorkflowClient : Uri * Azure.Core.TokenCredential * Azure.Analytics.Purview.Workflows.PurviewWorkflowServiceClientOptions -> Azure.Analytics.Purview.Workflows.WorkflowClient
Public Sub New (endpoint As Uri, credential As TokenCredential, options As PurviewWorkflowServiceClientOptions)

Parameters

endpoint
Uri

The account endpoint of your Purview account. Example: https://{accountName}.purview.azure.com/.

credential
TokenCredential

A credential used to authenticate to an Azure Service.

options
PurviewWorkflowServiceClientOptions

The options for configuring the client.

Exceptions

endpoint or credential is null.

Applies to