WorkflowApplicationAbortedEventArgs 类

定义

提供已中止的工作流实例的有关数据。

public ref class WorkflowApplicationAbortedEventArgs : System::Activities::WorkflowApplicationEventArgs
public class WorkflowApplicationAbortedEventArgs : System.Activities.WorkflowApplicationEventArgs
type WorkflowApplicationAbortedEventArgs = class
    inherit WorkflowApplicationEventArgs
Public Class WorkflowApplicationAbortedEventArgs
Inherits WorkflowApplicationEventArgs
继承
WorkflowApplicationAbortedEventArgs

示例

下面的代码示例检查传递给 WorkflowApplicationAbortedEventArgs 实例的 Aborted 处理程序的 WorkflowApplication,并显示有关工作流中止原因的信息。

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

注解

当由 WorkflowApplication 承载的工作流中止时,将调用 Aborted 处理程序,而不调用 Completed 处理程序。

属性

InstanceId

工作流实例的唯一标识符。

(继承自 WorkflowApplicationEventArgs)
Reason

获取提供有关工作流实例中止原因信息的异常。

方法

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetInstanceExtensions<T>()

获取指定类型的扩展的集合。

(继承自 WorkflowApplicationEventArgs)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()

返回表示当前对象的字符串。

(继承自 Object)

适用于