Gets or sets the fragment portion of the URI. : UriBuilder « Network « C# / C Sharp






Gets or sets the fragment portion of the URI.

 

using System;

public class MainClass{
   public static void Main(){

        UriBuilder uBuild = new UriBuilder("http://www.google.com/");
        uBuild.Path = "index.htm";
        uBuild.Fragment = "main";
        
        Uri myUri = uBuild.Uri;
   }
}   

   
  








Related examples in the same category

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