CancellationToken Constructor

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Initializes the CancellationToken.

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

Syntax

Public Sub New ( _
    canceled As Boolean _
)
public CancellationToken(
    bool canceled
)

Parameters

Remarks

Tokens created with this constructor will remain in the canceled state specified by the canceled parameter. If canceled is false, both CanBeCanceled and IsCancellationRequested will be false.

If canceled is true, both CanBeCanceled and IsCancellationRequested will be true.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0

See Also

Reference

CancellationToken Structure

System.Threading Namespace