IWorkflowDebugger Interface

Definition

Caution

The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*

Defines the interface that receives workflow instance creation, execution, and termination status information from a DebugController object running inside the workflow host application.

public interface class IWorkflowDebugger
public interface IWorkflowDebugger
[System.Obsolete("The System.Workflow.* types are deprecated.  Instead, please use the new types from System.Activities.*")]
public interface IWorkflowDebugger
type IWorkflowDebugger = interface
[<System.Obsolete("The System.Workflow.* types are deprecated.  Instead, please use the new types from System.Activities.*")>]
type IWorkflowDebugger = interface
Public Interface IWorkflowDebugger
Attributes

Remarks

Note

This material discusses types and namespaces that are obsolete. For more information, see Deprecated Types in Windows Workflow Foundation 4.5.

This interface is implemented by a .NET remoting object hosted by the debugger.

Methods

ActivityStatusChanged(Guid, Guid, Guid, String, String, ActivityExecutionStatus, Int32)

Called when the ExecutionStatus of an activity within the workflow changes.

AssemblyLoaded(Guid, String, Boolean)

Called when an assembly is loaded in the app domain corresponding to the WorkflowRuntime in the workflow host application.

BeforeActivityStatusChanged(Guid, Guid, Guid, String, String, ActivityExecutionStatus, Int32)

Called before the ExecutionStatus of an activity within the workflow changes.

BeforeHandlerInvoked(Guid, Guid, String, ActivityHandlerDescriptor)

Called before a handler in the code-beside is about to be invoked.

HandlerInvoked(Guid, Guid, Int32, String)

Called after a handler in the code-beside is invoked.

InstanceCompleted(Guid, Guid)

Called when a workflow instance completes.

InstanceCreated(Guid, Guid, Guid)

Called when a workflow instance is created.

InstanceDynamicallyUpdated(Guid, Guid, Guid)

Called when the workflow instance is dynamically updated with a workflow change.

ScheduleTypeLoaded(Guid, Guid, String, String, String, Boolean, String, String, String)

Called when a new workflow type is loaded by the workflow runtime engine in the workflow host application.

SetInitialActivityStatus(Guid, Guid, Guid, String, String, ActivityExecutionStatus, Int32)

Called to set the initial status of the activities in a workflow.

UpdateHandlerMethodsForActivity(Guid, Guid, String, List<ActivityHandlerDescriptor>)

Called when an activity enters the Executing state.

Applies to