Create UriBuilder class with the specified scheme, host, port number, and path.
Imports System.IO
Imports System.Net
Imports System.Text
public class MainClass
Shared Sub Main()
Dim myUri As New UriBuilder("http", "www.yourDomain.com", 8080, "index.htm")
End Sub
End Class
Related examples in the same category