ExceptionDispatchInfo.SourceException 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 that's represented by the current instance.
public:
 property Exception ^ SourceException { Exception ^ get(); };public Exception SourceException { get; }member this.SourceException : ExceptionPublic ReadOnly Property SourceException As ExceptionProperty 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.