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