2013-08-07 69 views
2

我正在尋找一種方法來查找和使用dhcp租約中剩下多少生命週期,MS有這裏的文檔,但我想我真的只是不知道如何使用此屬性。我一直無法找到很多。使用c#屬性DHCPLeaseLifetime

這裏的link

+0

文件說,它返回的左秒數......你需要什麼? –

回答

1

你可能要考慮the MSDN example
它說明你如何到達租賃期限。

的例子中的(濃縮)版本以供將來參考:

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 
+0

這看起來可能正是我所需要的,我現在就來看看。 – thekevshow