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 |
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