WorkflowApplication.Aborted Propriedade

Definição

Obtém ou define a Action<T> que é invocada quando a instância do fluxo de trabalho é anulada.

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 de fluxo de trabalho é anulada.

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.

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.

Aplica-se a