IWorkflowDebugger Interface
Definição
Cuidado
The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*
Define a interface que recebe as informações de status de criação, execução e término de instância do fluxo de trabalho de um objeto DebugController dentro do aplicativo host de fluxo de trabalho.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
- Atributos
Comentários
Observação
Este material discute tipos e namespaces obsoletos.This material discusses types and namespaces that are obsolete. Para obter mais informações, consulte Deprecated Types in Windows Workflow Foundation 4.5 (Tipos preteridos no Windows Workflow Foundation 4.5).For more information, see Deprecated Types in Windows Workflow Foundation 4.5.
Essa interface é implementada por um objeto de comunicação remota do .NET hospedado pelo depurador.This interface is implemented by a .NET remoting object hosted by the debugger.
Métodos
| ActivityStatusChanged(Guid, Guid, Guid, String, String, ActivityExecutionStatus, Int32) |
Chamado quando o ExecutionStatus de uma atividade no fluxo de trabalho mudar.Called when the ExecutionStatus of an activity within the workflow changes. |
| AssemblyLoaded(Guid, String, Boolean) |
Chamado quando um assembly é carregado no domínio de aplicativo correspondente para o WorkflowRuntime no aplicativo host de fluxo de trabalho.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) |
Chamado antes do ExecutionStatus de uma atividade no fluxo de trabalho mudar.Called before the ExecutionStatus of an activity within the workflow changes. |
| BeforeHandlerInvoked(Guid, Guid, String, ActivityHandlerDescriptor) |
Chamado antes de um manipulador no código paralelo está prestes a ser invocado.Called before a handler in the code-beside is about to be invoked. |
| HandlerInvoked(Guid, Guid, Int32, String) |
Chamado depois que um manipulador no código paralelo é invocado.Called after a handler in the code-beside is invoked. |
| InstanceCompleted(Guid, Guid) |
Chamado quando uma instância de fluxo de trabalho for concluída.Called when a workflow instance completes. |
| InstanceCreated(Guid, Guid, Guid) |
Chamado quando uma instância de fluxo de trabalho for criada.Called when a workflow instance is created. |
| InstanceDynamicallyUpdated(Guid, Guid, Guid) |
Chamado quando a instância de fluxo de trabalho é atualizada dinamicamente com uma alteração de fluxo de trabalho.Called when the workflow instance is dynamically updated with a workflow change. |
| ScheduleTypeLoaded(Guid, Guid, String, String, String, Boolean, String, String, String) |
Chamado quando um novo tipo de fluxo de trabalho for carregado pelo mecanismo de runtime de fluxo de trabalho no aplicativo host de fluxo de trabalho.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) |
Chamado para definir o status inicial das atividades em um fluxo de trabalho.Called to set the initial status of the activities in a workflow. |
| UpdateHandlerMethodsForActivity(Guid, Guid, String, List<ActivityHandlerDescriptor>) |
Chamado quando uma atividade entra no estado Em execução.Called when an activity enters the Executing state. |