ExceptionDispatchInfo.SourceException Property

Definition

Gets the exception that's represented by the current instance.

public:
 property Exception ^ SourceException { Exception ^ get(); };
public Exception SourceException { get; }
member this.SourceException : Exception
Public ReadOnly Property SourceException As Exception

Property Value

The exception that's represented by the current instance.

Remarks

This property is used by the Task Parallel Library, for example, to combine multiple exceptions in an AggregateException object. It's not intended to be used by application code. Use the Throw method to restore the state of the captured exception and throw it.

Applies to