2

我一直在寻找一种方法来找出并使用 dhcp 租约中剩余的生命周期,MS 在这里有文档,但我想我真的只是不确定如何使用这个属性。我找不到太多东西。

这是链接

4

1 回答 1

1

您可能需要考虑MSDN 示例
它说明了如何达到租约期限。

该示例的(精简)版本以供将来参考:

    For Each adapter In Net.NetworkInformation.NetworkInterface.GetAllNetworkInterfaces()
        For Each uni In adapter.GetIPProperties().UnicastAddresses
            Console.WriteLine("  Unicast Address ......................... : {0}", uni.Address)
            Console.WriteLine("  DHCP Leased Life Time ................ : {0}", uni.DhcpLeaseLifetime)
        Next uni
    Next adapter
于 2013-08-07T14:17:41.130 回答