WorkflowUpdateableControlClient.SuspendAsync 方法

定义

开始异步挂起操作。

重载

SuspendAsync(Guid)

开始异步挂起操作。

SuspendAsync(Guid, Object)

开始异步挂起操作。

SuspendAsync(Guid, String)

开始异步挂起操作。

SuspendAsync(Guid, String, Object)

开始异步挂起操作。

SuspendAsync(Guid)

开始异步挂起操作。

public:
 void SuspendAsync(Guid instanceId);
public void SuspendAsync (Guid instanceId);
member this.SuspendAsync : Guid -> unit
Public Sub SuspendAsync (instanceId As Guid)

参数

instanceId
Guid

要挂起的工作流实例。

适用于

SuspendAsync(Guid, Object)

开始异步挂起操作。

public:
 void SuspendAsync(Guid instanceId, System::Object ^ userState);
public void SuspendAsync (Guid instanceId, object userState);
member this.SuspendAsync : Guid * obj -> unit
Public Sub SuspendAsync (instanceId As Guid, userState As Object)

参数

instanceId
Guid

要挂起的工作流实例。

userState
Object

一个包含与异步挂起操作关联的状态信息的用户对象。

适用于

SuspendAsync(Guid, String)

开始异步挂起操作。

public:
 void SuspendAsync(Guid instanceId, System::String ^ reason);
public void SuspendAsync (Guid instanceId, string reason);
member this.SuspendAsync : Guid * string -> unit
Public Sub SuspendAsync (instanceId As Guid, reason As String)

参数

instanceId
Guid

要挂起的工作流实例。

reason
String

挂起工作流实例的原因。

适用于

SuspendAsync(Guid, String, Object)

开始异步挂起操作。

public:
 void SuspendAsync(Guid instanceId, System::String ^ reason, System::Object ^ userState);
public void SuspendAsync (Guid instanceId, string reason, object userState);
member this.SuspendAsync : Guid * string * obj -> unit
Public Sub SuspendAsync (instanceId As Guid, reason As String, userState As Object)

参数

instanceId
Guid

要挂起的工作流实例。

reason
String

挂起工作流实例的原因。

userState
Object

一个包含与异步运行操作关联的状态信息的用户对象。

适用于