Initializes a new instance of the UriBuilder class with the specified scheme, host, port number, path and query string or fragment identifier.
using System;
public class MainClass{
public static void Main(){
UriBuilder myUri = new UriBuilder("http","www.google.com",8080,"index.htm","#top");
}
}
Related examples in the same category