Implemented interface member:
3 references to Equals
Aspire.Hosting.Browsers (3)
IBrowserHost.cs (3)
153public override bool Equals(object? obj) => obj is BrowserHostIdentity other && Equals(other); 165public static bool operator ==(BrowserHostIdentity left, BrowserHostIdentity right) => left.Equals(right); 167public static bool operator !=(BrowserHostIdentity left, BrowserHostIdentity right) => !left.Equals(right);