Create Uri with specified URI, with explicit control of character escaping. : URI « Network Remote « VB.Net
- VB.Net
- Network Remote
- URI
Create Uri with specified URI, with explicit control of character escaping.
Imports System.IO
Imports System.Net
Imports System.Text
public class MainClass
Shared Sub Main()
Dim myUri As New Uri("http://www.yourdomain.com/Hello%20World.htm", True)
End Sub
End Class
Related examples in the same category