WorkflowServiceAttributes.IncludeExceptionDetailInFaults 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指定是否要将常规未处理执行异常转换为 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
属性值
如果未经处理的异常将作为 SOAP 错误返回,则为 true
;否则为 false
。
示例
下面的示例演示如何访问 IncludeExceptionDetailInFaults
属性。
WorkflowServiceAttributes attributes = new WorkflowServiceAttributes();
attributes.IncludeExceptionDetailInFaults = true;
Dim attributes As New WorkflowServiceAttributes()
attributes.IncludeExceptionDetailInFaults = True
注解
默认值是 false
。