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