50 lines
1.4 KiB
C#
50 lines
1.4 KiB
C#
namespace WebViewStream
|
|
{
|
|
public class MdnsService
|
|
{
|
|
public string IpAddress { get; }
|
|
public int Port { get; }
|
|
public string Path { get; }
|
|
public string Host { get; }
|
|
|
|
/// <summary>
|
|
/// Represents a service discovered via mDNS.
|
|
/// </summary>
|
|
/// <param name="ipAddress"></param>
|
|
/// <param name="port"></param>
|
|
/// <param name="path"></param>
|
|
/// <param name="host"></param>
|
|
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;
|
|
}
|
|
}
|
|
}
|