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.

Task::IsFaulted Property

 

Gets whether the Task completed due to an unhandled exception.

Namespace:   System.Threading.Tasks
Assembly:  mscorlib (in mscorlib.dll)

public:
property bool IsFaulted {
	bool get();
}

Property Value

Type: System::Boolean

true if the task has thrown an unhandled exception; otherwise false.

If IsFaulted is true, the task's Status is equal to Faulted, and its Exception property will be non-null.

System_CAPS_importantImportant

Retrieving the value of the Task::IsFaulted property does not block the calling thread until the task has completed.

Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 5.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Return to top
Show:
© 2017 Microsoft