WorkflowApplication.Aborted Propriedade

Definição

Obtém ou define o Action<T> que é invocado quando a instância do workflow é abortada.

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 de Propriedade

A ação que é invocada quando a instância do fluxo de trabalho é abortada.

Exemplos

O exemplo de código seguinte inspeciona a WorkflowApplicationAbortedEventArgs passagem para o Aborted handler de uma WorkflowApplication instância e mostra informações sobre o motivo pelo qual o fluxo de trabalho foi abortado.

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);
};

Observações

Quando um fluxo de trabalho alojado por a WorkflowApplication é abortado, o Aborted handler é invocado e o Completed handler não é invocado.

Aplica-se a