ExceptionDispatchInfo.Capture Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates an ExceptionDispatchInfo object that represents the specified exception at the current point in code.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- source
- Type: System.Exception
The exception whose state is captured, and which is represented by the returned object.
Return Value
Type: System.Runtime.ExceptionServices.ExceptionDispatchInfoAn object that represents the specified exception at the current point in code.
| Exception | Condition |
|---|---|
| ArgumentException | source is null. |
You can use the ExceptionDispatchInfo object that is returned by this method at another time and possibly on another thread to rethrow the specified exception, as if the exception had flowed from this point where it was captured to the point where it is rethrown.
If the exception is active when it is captured, the current stack trace information and Watson information that is contained in the exception is stored. If it is inactive, that is, if it has not been thrown, it will not have any stack trace information or Watson information.