WorkflowServiceAttributes.IncludeExceptionDetailInFaults 属性

定义

获取或设置一个值,该值指定是否要将常规未处理执行异常转换为 FaultException 类型的 ExceptionDetail 并将其作为错误消息发送。 仅在开发阶段将其设置为 true 以便对服务进行故障排除。

public:
 property bool IncludeExceptionDetailInFaults { bool get(); void set(bool value); };
public bool IncludeExceptionDetailInFaults { get; set; }
member this.IncludeExceptionDetailInFaults : bool with get, set
Public Property IncludeExceptionDetailInFaults As Boolean

属性值

Boolean

如果未经处理的异常将作为 SOAP 错误返回,则为 true;否则为 false

示例

下面的示例演示如何访问 IncludeExceptionDetailInFaults 属性。

WorkflowServiceAttributes attributes = new WorkflowServiceAttributes();
attributes.IncludeExceptionDetailInFaults = true;
Dim attributes As New WorkflowServiceAttributes()
attributes.IncludeExceptionDetailInFaults = True

注解

默认值是 false

适用于