WorkflowApplication.CreateDefaultInstanceOwner Method

Definition

Creates a default instance owner for the workflow.

Overloads

CreateDefaultInstanceOwner(InstanceStore, WorkflowIdentity, WorkflowIdentityFilter)

Creates a default instance owner for the workflow using specified instance store, definition identity, and identity filter.

CreateDefaultInstanceOwner(InstanceStore, WorkflowIdentity, WorkflowIdentityFilter, TimeSpan)

Creates a default instance owner for the workflow using specified instance store, definition identity, and identity filter and timeout interval.

CreateDefaultInstanceOwner(InstanceStore, WorkflowIdentity, WorkflowIdentityFilter)

Creates a default instance owner for the workflow using specified instance store, definition identity, and identity filter.

public:
 static void CreateDefaultInstanceOwner(System::Runtime::DurableInstancing::InstanceStore ^ instanceStore, System::Activities::WorkflowIdentity ^ definitionIdentity, System::Activities::WorkflowIdentityFilter identityFilter);
public static void CreateDefaultInstanceOwner (System.Runtime.DurableInstancing.InstanceStore instanceStore, System.Activities.WorkflowIdentity definitionIdentity, System.Activities.WorkflowIdentityFilter identityFilter);
static member CreateDefaultInstanceOwner : System.Runtime.DurableInstancing.InstanceStore * System.Activities.WorkflowIdentity * System.Activities.WorkflowIdentityFilter -> unit
Public Shared Sub CreateDefaultInstanceOwner (instanceStore As InstanceStore, definitionIdentity As WorkflowIdentity, identityFilter As WorkflowIdentityFilter)

Parameters

instanceStore
InstanceStore

The access to the persisted state of the current instance of the workflow application.

definitionIdentity
WorkflowIdentity

The definition identity of the workflow.

identityFilter
WorkflowIdentityFilter

The identity filter.

Applies to

CreateDefaultInstanceOwner(InstanceStore, WorkflowIdentity, WorkflowIdentityFilter, TimeSpan)

Creates a default instance owner for the workflow using specified instance store, definition identity, and identity filter and timeout interval.

public:
 static void CreateDefaultInstanceOwner(System::Runtime::DurableInstancing::InstanceStore ^ instanceStore, System::Activities::WorkflowIdentity ^ definitionIdentity, System::Activities::WorkflowIdentityFilter identityFilter, TimeSpan timeout);
public static void CreateDefaultInstanceOwner (System.Runtime.DurableInstancing.InstanceStore instanceStore, System.Activities.WorkflowIdentity definitionIdentity, System.Activities.WorkflowIdentityFilter identityFilter, TimeSpan timeout);
static member CreateDefaultInstanceOwner : System.Runtime.DurableInstancing.InstanceStore * System.Activities.WorkflowIdentity * System.Activities.WorkflowIdentityFilter * TimeSpan -> unit
Public Shared Sub CreateDefaultInstanceOwner (instanceStore As InstanceStore, definitionIdentity As WorkflowIdentity, identityFilter As WorkflowIdentityFilter, timeout As TimeSpan)

Parameters

instanceStore
InstanceStore

The access to the persisted state of the current instance of the workflow application.

definitionIdentity
WorkflowIdentity

The definition identity of the workflow.

identityFilter
WorkflowIdentityFilter

The identity filter.

timeout
TimeSpan

The interval in which the begin load operation must complete before the operation is canceled.

Applies to