本文整理匯總了VB.NET中System.Uri.DnsSafeHost屬性的典型用法代碼示例。如果您正苦於以下問題:VB.NET Uri.DnsSafeHost屬性的具體用法?VB.NET Uri.DnsSafeHost怎麽用?VB.NET Uri.DnsSafeHost使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類System.Uri
的用法示例。
在下文中一共展示了Uri.DnsSafeHost屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。
示例1: Uri
' Create new Uri using a string address.
Dim address As New Uri("http://[fe80::200:39ff:fe36:1a2d%254]/temp/example.htm")
' Make the address DNS safe.
' The following outputs "[fe80::200:39ff:fe36:1a2d]".
Console.WriteLine(address.Host)
' The following outputs "fe80::200:39ff:fe36:1a2d%254".
Console.WriteLine(address.DnsSafeHost)
End Sub