namespace WebViewStream { public class MdnsService { public string IpAddress { get; } public int Port { get; } public string Path { get; } public string Host { get; } /// /// Represents a service discovered via mDNS. /// /// /// /// /// public MdnsService(string ipAddress, int port, string path, string host) { IpAddress = ipAddress; Port = port; Path = path; Host = host; } public override string ToString() { return $"IpAddress: {IpAddress}, Port: {Port}, Path: {Path}, Host: {Host}"; } public override bool Equals(object obj) { return obj is MdnsService service && IpAddress == service.IpAddress && Host == service.Host && Port == service.Port && Path == service.Path; } public override int GetHashCode() { int hash = 17; hash = hash * 31 + (IpAddress?.GetHashCode() ?? 0); hash = hash * 31 + Port.GetHashCode(); hash = hash * 31 + (Path?.GetHashCode() ?? 0); hash = hash * 31 + (Host?.GetHashCode() ?? 0); return hash; } } }