IWorkflowDebugger.BeforeHandlerInvoked 方法

定义

在代码旁的处理程序即将调用之前调用。

public:
 void BeforeHandlerInvoked(Guid programId, Guid scheduleTypeId, System::String ^ activityQualifiedName, System::Workflow::Runtime::DebugEngine::ActivityHandlerDescriptor handlerMethod);
public void BeforeHandlerInvoked(Guid programId, Guid scheduleTypeId, string activityQualifiedName, System.Workflow.Runtime.DebugEngine.ActivityHandlerDescriptor handlerMethod);
abstract member BeforeHandlerInvoked : Guid * Guid * string * System.Workflow.Runtime.DebugEngine.ActivityHandlerDescriptor -> unit
Public Sub BeforeHandlerInvoked (programId As Guid, scheduleTypeId As Guid, activityQualifiedName As String, handlerMethod As ActivityHandlerDescriptor)

参数

programId
Guid

与实例关联的Guid内部生成WorkflowRuntime

scheduleTypeId
Guid

与工作流类型关联的内部生成 Guid

activityQualifiedName
String

一个 String 包含当前活动的完全限定名称。

handlerMethod
ActivityHandlerDescriptor

一个 ActivityHandlerDescriptor 包含即将调用的代码旁处理程序方法的相关信息。

适用于