This documentation is archived and is not being maintained.
CancellationToken::WaitHandle Property
Visual Studio 2010
Gets a WaitHandle that is signaled when the token is canceled.
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System.Threading::WaitHandleA WaitHandle that is signaled when the token is canceled.
| Exception | Condition |
|---|---|
| ObjectDisposedException | The associated CancellationTokenSource has been disposed. |
Accessing this property causes a WaitHandle to be instantiated. It is preferable to only use this property when necessary, and to then dispose the associated CancellationTokenSource instance at the earliest opportunity (disposing the source will dispose of this allocated handle). The handle should not be closed or disposed directly.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: