Task.IsFaulted Property
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.
Gets whether the Task completed due to an unhandled exception.
public:
property bool IsFaulted { bool get(); };
public bool IsFaulted { get; }
member this.IsFaulted : bool
Public ReadOnly Property IsFaulted As Boolean
Property Value
true
if the task has thrown an unhandled exception; otherwise false
.
Remarks
If IsFaulted is true
, the task's Status is equal to Faulted, and its Exception property will be non-null.
Important
Retrieving the value of the Task.IsFaulted property does not block the calling thread until the task has completed.
Applies to
Dolgozzon együtt velünk a GitHubon
A tartalom forrása a GitHubon található, ahol létrehozhat és áttekinthet problémákat és lekéréses kérelmeket is. További információért tekintse meg a közreműködői útmutatónkat.