WorkflowApplication.DeleteDefaultInstanceOwner Method

Definition

Deletes a default instance owner for the workflow.

Overloads

DeleteDefaultInstanceOwner(InstanceStore)

Deletes a default instance owner for the workflow with specified instance store.

DeleteDefaultInstanceOwner(InstanceStore, TimeSpan)

Deletes a default instance owner for the workflow with specified instance store and timeout interval.

DeleteDefaultInstanceOwner(InstanceStore)

Deletes a default instance owner for the workflow with specified instance store.

public:
 static void DeleteDefaultInstanceOwner(System::Runtime::DurableInstancing::InstanceStore ^ instanceStore);
public static void DeleteDefaultInstanceOwner (System.Runtime.DurableInstancing.InstanceStore instanceStore);
static member DeleteDefaultInstanceOwner : System.Runtime.DurableInstancing.InstanceStore -> unit
Public Shared Sub DeleteDefaultInstanceOwner (instanceStore As InstanceStore)

Parameters

instanceStore
InstanceStore

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

Applies to

DeleteDefaultInstanceOwner(InstanceStore, TimeSpan)

Deletes a default instance owner for the workflow with specified instance store and timeout interval.

public:
 static void DeleteDefaultInstanceOwner(System::Runtime::DurableInstancing::InstanceStore ^ instanceStore, TimeSpan timeout);
public static void DeleteDefaultInstanceOwner (System.Runtime.DurableInstancing.InstanceStore instanceStore, TimeSpan timeout);
static member DeleteDefaultInstanceOwner : System.Runtime.DurableInstancing.InstanceStore * TimeSpan -> unit
Public Shared Sub DeleteDefaultInstanceOwner (instanceStore As InstanceStore, timeout As TimeSpan)

Parameters

instanceStore
InstanceStore

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

timeout
TimeSpan

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

Applies to