WorkflowApplication.Aborted Propriedade
Definição
public:
property Action<System::Activities::WorkflowApplicationAbortedEventArgs ^> ^ Aborted { Action<System::Activities::WorkflowApplicationAbortedEventArgs ^> ^ get(); void set(Action<System::Activities::WorkflowApplicationAbortedEventArgs ^> ^ value); };
public Action<System.Activities.WorkflowApplicationAbortedEventArgs> Aborted { get; set; }
member this.Aborted : Action<System.Activities.WorkflowApplicationAbortedEventArgs> with get, set
Public Property Aborted As Action(Of WorkflowApplicationAbortedEventArgs)
Valor da propriedade
A ação que é invocada quando a instância do fluxo de trabalho é anulada.The action that is invoked when the workflow instance is aborted.
Exemplos
O exemplo de código a seguir inspeciona o WorkflowApplicationAbortedEventArgs passado para o Aborted manipulador de uma WorkflowApplication instância e exibe informações sobre por que o fluxo de trabalho foi anulado.The following code example inspects the WorkflowApplicationAbortedEventArgs passed into the Aborted handler of a WorkflowApplication instance and displays information about why workflow was aborted.
wfApp.Aborted = delegate(WorkflowApplicationAbortedEventArgs e)
{
// Display the exception that caused the workflow
// to abort.
Console.WriteLine("Workflow {0} Aborted.", e.InstanceId);
Console.WriteLine("Exception: {0}\n{1}",
e.Reason.GetType().FullName,
e.Reason.Message);
};
Comentários
Quando um fluxo de trabalho hospedado por um WorkflowApplication é anulado, o Aborted manipulador é invocado e o Completed manipulador não é invocado.When a workflow hosted by a WorkflowApplication is aborted, the Aborted handler is invoked and the Completed handler is not invoked.