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