CancellationTokenRegistration.Equals Method

Definition

Determines whether the current CancellationTokenRegistration instance is equal to the specified CancellationTokenRegistration.

Overloads

Equals(Object)

Determines whether the current CancellationTokenRegistration instance is equal to the specified CancellationTokenRegistration.

Equals(CancellationTokenRegistration)

Determines whether the current CancellationTokenRegistration instance is equal to the specified CancellationTokenRegistration.

Equals(Object)

Source:
CancellationTokenRegistration.cs
Source:
CancellationTokenRegistration.cs
Source:
CancellationTokenRegistration.cs

Determines whether the current CancellationTokenRegistration instance is equal to the specified CancellationTokenRegistration.

C#
public override bool Equals(object obj);
C#
public override bool Equals(object? obj);

Parameters

obj
Object

The other object to which to compare this instance.

Returns

true if both this and obj are equal. False, otherwise.

Two CancellationTokenRegistration instances are equal if they both refer to the output of a single call to the same Register method of a CancellationToken.

See also

Applies to

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

Equals(CancellationTokenRegistration)

Source:
CancellationTokenRegistration.cs
Source:
CancellationTokenRegistration.cs
Source:
CancellationTokenRegistration.cs

Determines whether the current CancellationTokenRegistration instance is equal to the specified CancellationTokenRegistration.

C#
public bool Equals(System.Threading.CancellationTokenRegistration other);

Parameters

other
CancellationTokenRegistration

The other CancellationTokenRegistration to which to compare this instance.

Returns

true if both this and other are equal. False, otherwise.

Two CancellationTokenRegistration instances are equal if they both refer to the output of a single call to the same Register method of a CancellationToken.

Implements

See also

Applies to

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0