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.

AsynchronousOperationException Constructor (Exception^)

.NET Framework (current version)
 

Initializes a new instance of the AsynchronousOperationException class with a system-supplied error message and a reference to the inner exception that is the cause of this exception.

Namespace:   System.IdentityModel
Assembly:  System.IdentityModel (in System.IdentityModel.dll)

public:
AsynchronousOperationException(
	Exception^ innerException
)

Parameters

innerException
Type: System::Exception^

The Exception that is the cause of the current exception. If the innerException parameter is not null, the current exception is raised in a catch block that handles the inner exception.

An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception in the InnerException property. The InnerException property returns the same value that is passed into the constructor.

The following table shows the initial property values for the new instance.

Property

Value

InnerException

The inner exception reference.

Message

A system-supplied message that describes the error. This message takes into account the current system culture.

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