Gets any exception which occurred during the asynchronous operation.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Property Exception As Exception |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As EndEventArgs
Dim value As Exception
instance.Exception = value
value = instance.Exception |
| Managed Extensions for C++ | |
|---|
public: __property Exception* get_Exception();
public: __property void set_Exception(
Exception* value
); |
Property Value
If any exception occurred during the asynchronous operation, this property will contain an Exception object describing the exception.
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also