WorkflowServiceAttributes.IncludeExceptionDetailInFaults Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that specifies that general unhandled execution exceptions are to be converted into a FaultException of type ExceptionDetail and sent as a fault message. Set this to true
only during development to troubleshoot a service.
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
Property Value
true
if unhandled exceptions are to be returned as SOAP faults; otherwise, false
.
Examples
The following example demonstrates how to access the IncludeExceptionDetailInFaults
property.
WorkflowServiceAttributes attributes = new WorkflowServiceAttributes();
attributes.IncludeExceptionDetailInFaults = true;
Dim attributes As New WorkflowServiceAttributes()
attributes.IncludeExceptionDetailInFaults = True
Remarks
The default value is false
.