Share via


WorkflowManagementClient Constructor

 

Initializes a new instance of the WorkflowManagementClient class.

Namespace:   Microsoft.Workflow.Client
Assembly:  Microsoft.Workflow.Client (in Microsoft.Workflow.Client.dll)

Overload List

Name Description
System_CAPS_pubmethod WorkflowManagementClient(String)

Initializes a new instance of the WorkflowManagementClient class with URI of the scope.

System_CAPS_pubmethod WorkflowManagementClient(Uri)

Initializes a new instance of the WorkflowManagementClient class with the URI of the scope.

System_CAPS_pubmethod WorkflowManagementClient(Uri, ClientSettings)

Initializes a new instance of the WorkflowManagementClient class with the scope URI and settings.

System_CAPS_pubmethod WorkflowManagementClient(Uri, ClientSettings, WorkflowNotificationPublisher)

Initializes a new instance of the WorkflowManagementClient class with scope URI, settings, and notification publisher.

System_CAPS_pubmethod WorkflowManagementClient(Uri, ICredentials)

Initializes a new instance of the WorkflowManagementClient class with scope URI and user credentials.

See Also

WorkflowManagementClient Class
Microsoft.Workflow.Client Namespace

Return to top

WorkflowManagementClient Constructor (String)

Initializes a new instance of the WorkflowManagementClient class with URI of the scope.

Syntax

public WorkflowManagementClient(
    string scopeUri
)
public:
WorkflowManagementClient(
    String^ scopeUri
)
new : 
        scopeUri:string -> WorkflowManagementClient
Public Sub New (
    scopeUri As String
)

Parameters

Return to top

WorkflowManagementClient Constructor (Uri)

Initializes a new instance of the WorkflowManagementClient class with the URI of the scope.

Syntax

public WorkflowManagementClient(
    Uri scopeUri
)
public:
WorkflowManagementClient(
    Uri^ scopeUri
)
new : 
        scopeUri:Uri -> WorkflowManagementClient
Public Sub New (
    scopeUri As Uri
)

Parameters

  • scopeUri
    Type: System.Uri

    The URI of the server (fully qualified domain name) for the root scope or the full scope URI with the scope path to access a specific scope.

Return to top

WorkflowManagementClient Constructor (Uri, ClientSettings)

Initializes a new instance of the WorkflowManagementClient class with the scope URI and settings.

Syntax

public WorkflowManagementClient(
    Uri scopeUri,
    ClientSettings settings
)
public:
WorkflowManagementClient(
    Uri^ scopeUri,
    ClientSettings^ settings
)
new : 
        scopeUri:Uri *
        settings:ClientSettings -> WorkflowManagementClient
Public Sub New (
    scopeUri As Uri,
    settings As ClientSettings
)

Parameters

  • scopeUri
    Type: System.Uri

    The URI of the server (fully qualified domain name) for the root scope or the full scope uri with the scope path to access a specific scope.

Return to top

WorkflowManagementClient Constructor (Uri, ClientSettings, WorkflowNotificationPublisher)

Initializes a new instance of the WorkflowManagementClient class with scope URI, settings, and notification publisher.

Syntax

public WorkflowManagementClient(
    Uri scopeUri,
    ClientSettings settings,
    WorkflowNotificationPublisher publisher
)
public:
WorkflowManagementClient(
    Uri^ scopeUri,
    ClientSettings^ settings,
    WorkflowNotificationPublisher^ publisher
)
new : 
        scopeUri:Uri *
        settings:ClientSettings *
        publisher:WorkflowNotificationPublisher -> WorkflowManagementClient
Public Sub New (
    scopeUri As Uri,
    settings As ClientSettings,
    publisher As WorkflowNotificationPublisher
)

Parameters

  • scopeUri
    Type: System.Uri

    The URI of the server (fully qualified domain name) for the root scope or the full scope URI with the scope path to access a specific scope.

Return to top

WorkflowManagementClient Constructor (Uri, ICredentials)

Initializes a new instance of the WorkflowManagementClient class with scope URI and user credentials.

Syntax

public WorkflowManagementClient(
    Uri scopeUri,
    ICredentials credentials
)
public:
WorkflowManagementClient(
    Uri^ scopeUri,
    ICredentials^ credentials
)
new : 
        scopeUri:Uri *
        credentials:ICredentials -> WorkflowManagementClient
Public Sub New (
    scopeUri As Uri,
    credentials As ICredentials
)

Parameters

Return to top