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