Class LinkedTokenSourceFactory
Represents helper methods for working with linked cancellation tokens.
Inherited Members
Namespace: DotNext.Threading
Assembly: DotNext.Threading.dll
Syntax
public static class LinkedTokenSourceFactory
Methods
| Improve this Doc View SourceLinkTo(ref CancellationToken, CancellationToken)
Links two cancellation token.
Declaration
public static CancellationTokenSource LinkTo(this ref CancellationToken first, CancellationToken second)
Parameters
| Type | Name | Description |
|---|---|---|
| CancellationToken | first | The first cancellation token. Can be modified by this method. |
| CancellationToken | second | The second cancellation token. |
Returns
| Type | Description |
|---|---|
| CancellationTokenSource | The linked token source; or null if |