Equals Method (CancellationToken)

Task Parallel System.Threading

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

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

Syntax

Visual Basic (Declaration)
Public Function Equals ( _
	other As CancellationToken _
) As Boolean
C#
public bool Equals(
	CancellationToken other
)

Parameters

other
Type: System.Threading..::.CancellationToken
The other CancellationToken to which to compare this instance.

Return Value

True if the 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.

See Also