WorkflowUnhandledExceptionBehavior 类

定义

一种服务行为,可用于指定工作流服务中发生未经处理的异常时所采取的操作。

public ref class WorkflowUnhandledExceptionBehavior : System::ServiceModel::Description::IServiceBehavior
public class WorkflowUnhandledExceptionBehavior : System.ServiceModel.Description.IServiceBehavior
type WorkflowUnhandledExceptionBehavior = class
    interface IServiceBehavior
Public Class WorkflowUnhandledExceptionBehavior
Implements IServiceBehavior
继承
WorkflowUnhandledExceptionBehavior
实现

注解

当未在工作流中处理异常时,OnUnhandledExceptionWorkflowUnhandledExceptionBehavior 都将指示运行时的行为;但 WorkflowUnhandledExceptionBehavior 可以选择将已挂起的工作流保留在持久性存储区中,而 OnUnhandledException 无法做到这一点。 原因在于,对已挂起的工作流执行的操作是特定于宿主的,而 WorkflowApplication 则相反。 若要使用 WorkflowApplication 实现此功能,请创建一个具有此行为的自定义 PersistenceParticipant

有关如何使用此行为的示例,请参阅 工作流服务主机扩展性

构造函数

WorkflowUnhandledExceptionBehavior()

初始化 WorkflowUnhandledExceptionBehavior 类的新实例。

属性

Action

获取或设置出现未经处理的异常时采取的措施。

方法

AddBindingParameters(ServiceDescription, ServiceHostBase, Collection<ServiceEndpoint>, BindingParameterCollection)

实现 AddBindingParameters(ServiceDescription, ServiceHostBase, Collection<ServiceEndpoint>, BindingParameterCollection) 方法以支持该行为。

ApplyDispatchBehavior(ServiceDescription, ServiceHostBase)

实现 ApplyDispatchBehavior(ServiceDescription, ServiceHostBase) 方法以支持该行为。

Equals(Object)

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

(继承自 Object)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()

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

(继承自 Object)
Validate(ServiceDescription, ServiceHostBase)

实现 Validate(ServiceDescription, ServiceHostBase) 方法以支持该行为。

适用于