Implemented interface member:
3 references to Equals
System.Security.Cryptography.Cose (3)
System\Security\Cryptography\Cose\CoseHeaderLabel.cs (3)
84
public override bool Equals([NotNullWhen(true)] object? obj) => obj is CoseHeaderLabel otherObj &&
Equals
(otherObj);
110
public static bool operator ==(CoseHeaderLabel left, CoseHeaderLabel right) => left.
Equals
(right);
118
public static bool operator !=(CoseHeaderLabel left, CoseHeaderLabel right) => !left.
Equals
(right);