CancellationToken.Equals Method (Object)

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

Determines whether the current CancellationToken instance is equal to the specified Object.

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

Syntax

Public Overrides Function Equals ( _
    other As Object _
) As Boolean
public override bool Equals(
    Object other
)

Parameters

Return Value

Type: System..::.Boolean
True if other is a CancellationToken and if the two instances are equal; otherwise, false. Two tokens are equal if they are associated with the same CancellationTokenSource or if they were both constructed from public CancellationToken constructors and their IsCancellationRequested values are equal.

Exceptions

Exception Condition
ObjectDisposedException

An associated CancellationTokenSource has been disposed.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0

See Also

Reference

CancellationToken Structure

Equals Overload

System.Threading Namespace