internal static DhcpServerHost FromNative(DHCP_HOST_INFO Native) { return(new DhcpServerHost(Native.IpAddress) { NetBiosName = Native.NetBiosName, ServerName = Native.ServerName }); }
internal static DhcpServerHost FromNative(DHCP_HOST_INFO native) { return(new DhcpServerHost(address: native.IpAddress.AsHostToIpAddress(), netBiosName: native.NetBiosName, serverName: native.ServerName)); }