_Exception.GetBaseException Method
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.
Provides COM objects with version-independent access to the GetBaseException() method.
public:
Exception ^ GetBaseException();
public Exception GetBaseException ();
abstract member GetBaseException : unit -> Exception
Public Function GetBaseException () As Exception
Returns
The first exception thrown in a chain of exceptions. If the InnerException property of the current exception is a null reference (Nothing
in Visual Basic), this property returns the current exception.
Remarks
This method is for access to managed classes from unmanaged code and should not be called from managed code.
The Exception.GetBaseException method returns the Exception that is the root cause of one or more subsequent exceptions.