Initializes a new instance of the UriBuilder class with the specified scheme and host. : UriBuilder « Network « C# / C Sharp






Initializes a new instance of the UriBuilder class with the specified scheme and host.

 


using System;

public class MainClass{
   public static void Main(){
        UriBuilder myUri = new UriBuilder("http","www.google.com");
   
   }
}

   
  








Related examples in the same category

1.Initializes a new instance of the UriBuilder class with the specified scheme, host, and port.
2.Initializes a new instance of the UriBuilder class with the specified scheme, host, port number, and path.
3.Initializes a new instance of the UriBuilder class with the specified scheme, host, port number, path and query string or fragment identifier.
4.Gets or sets the fragment portion of the URI.
5.Gets or sets any query information included in the URI.