CancellationTokenSource::CreateLinkedTokenSource Method (array<CancellationToken>^)
.NET Framework (current version)
Creates a CancellationTokenSource that will be in the canceled state when any of the source tokens in the specified array are in the canceled state.
Assembly: mscorlib (in mscorlib.dll)
public: static CancellationTokenSource^ CreateLinkedTokenSource( ... array<CancellationToken>^ tokens )
Parameters
- tokens
-
Type:
array<System.Threading::CancellationToken>^
An array that contains the cancellation token instances to observe.
Return Value
Type: System.Threading::CancellationTokenSource^A CancellationTokenSource that is linked to the source tokens.
| Exception | Condition |
|---|---|
| ObjectDisposedException | A CancellationTokenSource associated with one of the source tokens has been disposed. |
| ArgumentNullException | tokens is null. |
| ArgumentException | tokens is empty. |
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
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
Show: