本文整理汇总了VB.NET中System.Net.NetworkInformation.IPInterfaceProperties.DnsSuffix属性的典型用法代码示例。如果您正苦于以下问题:VB.NET IPInterfaceProperties.DnsSuffix属性的具体用法?VB.NET IPInterfaceProperties.DnsSuffix怎么用?VB.NET IPInterfaceProperties.DnsSuffix使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。
在下文中一共展示了IPInterfaceProperties.DnsSuffix属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: DisplayDnsConfiguration
Public Shared Sub DisplayDnsConfiguration()
Dim adapters As NetworkInterface() = NetworkInterface.GetAllNetworkInterfaces()
Dim adapter As NetworkInterface
For Each adapter In adapters
Dim properties As IPInterfaceProperties = adapter.GetIPProperties()
Console.WriteLine(adapter.Description)
Console.WriteLine(" DNS suffix................................. :{0}", properties.DnsSuffix)
Console.WriteLine(" DNS enabled ............................. : {0}", properties.IsDnsEnabled)
Console.WriteLine(" Dynamically configured DNS .............. : {0}", properties.IsDynamicDnsEnabled)
Next adapter
End Sub