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 : 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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.