Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

_Exception::InnerException Property

 

Provides COM objects with version-independent access to the Exception::InnerException property.

Namespace:   System.Runtime.InteropServices
Assembly:  mscorlib (in mscorlib.dll)

property Exception^ InnerException {
	Exception^ get();
}

Property Value

Type: System::Exception^

An instance of System::Exception that describes the error that caused the current exception. The Exception::InnerException property returns the same value that was passed to the constructor, or a null reference (Nothing in Visual Basic) if the inner exception value was not supplied to the constructor. This property is read-only.

This method is for access to managed classes from unmanaged code and should not be called from managed code.

The Exception::InnerException property gets the Exception instance that caused the current exception.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft