Table of Contents

Enum FaultSensitivityDetails

Namespace
Cuemon.Diagnostics
Assembly
Cuemon.Core.dll

Specifies the level of sensitive details to include when serializing an ExceptionDescriptor.

[Flags]
public enum FaultSensitivityDetails

Fields

All = 15

Specifies that all details should be included when serializing an ExceptionDescriptor. Should not be used in a Production environment.

Data = 4

Specifies that System.Exception.Data of the Failure property is included in the serialized result.

Evidence = 8

Specifies that the Evidence property is included in the serialized result.

Failure = 1

Specifies that the Failure property is included in the serialized result.

FailureWithData = 5

Specifies that the Failure property and the associated System.Exception.Data is included in the serialized result.

FailureWithStackTrace = 3

Specifies that the Failure property and the associated System.Exception.StackTrace is included in the serialized result.

FailureWithStackTraceAndData = 7

Specifies that the Failure property and the associated System.Exception.StackTrace and System.Exception.Data is included in the serialized result.

None = 0

Specifies that all sensitive details are excluded. This is the default and should always be used when in the confines of a Production environment.

StackTrace = 2

Specifies that System.Exception.StackTrace of the Failure property is included in the serialized result.