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