Bearbeiten

TraceContextRecord.ErrorInfo Property

Definition

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.

Applies to

See also