TraceContextRecord.ErrorInfo 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 the Exception associated with the trace record, if one is available.
public:
property Exception ^ ErrorInfo { Exception ^ get(); };
public Exception ErrorInfo { get; }
member this.ErrorInfo : Exception
Public ReadOnly Property ErrorInfo As Exception
Property Value
A Exception associated with the trace record, if one exists, or null
.
Remarks
You can include an exception in a trace record if you are using tracing to debug an application or troubleshoot error and exception handling. The ErrorInfo property is null
when the trace record is associated with one of the TraceContext methods that does not have an explicit errorInfo
parameter or no exception is provided.