使用c#属性DHCPLeaseLifetime
本文关键字:DHCPLeaseLifetime 属性 使用 | 更新日期: 2023-09-27 18:26:48
我一直在寻找一种方法来找出和使用dhcp租约中剩余的生存期,MS在这里有文档,但我想我真的不知道如何使用这个属性。我一直找不到什么。
这是链接
您可能需要考虑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