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