0 out of 1 rated this helpful - Rate this topic

UriBuilder Class

Provides a custom constructor for uniform resource identifiers (URIs) and modifies URIs for the Uri class.

System.Object
  System.UriBuilder

Namespace:  System
Assembly:  System (in System.dll)
public class UriBuilder

The UriBuilder type exposes the following members.

  Name Description
Public method UriBuilder() Initializes a new instance of the UriBuilder class.
Public method UriBuilder(String) Initializes a new instance of the UriBuilder class with the specified URI.
Public method UriBuilder(Uri) Initializes a new instance of the UriBuilder class with the specified Uri instance.
Public method UriBuilder(String, String) Initializes a new instance of the UriBuilder class with the specified scheme and host.
Public method UriBuilder(String, String, Int32) Initializes a new instance of the UriBuilder class with the specified scheme, host, and port.
Public method UriBuilder(String, String, Int32, String) Initializes a new instance of the UriBuilder class with the specified scheme, host, port number, and path.
Public method UriBuilder(String, String, Int32, String, String) Initializes a new instance of the UriBuilder class with the specified scheme, host, port number, path and query string or fragment identifier.
Top
  Name Description
Public property Fragment Gets or sets the fragment portion of the URI.
Public property Host Gets or sets the Domain Name System (DNS) host name or IP address of a server.
Public property Password Gets or sets the password associated with the user that accesses the URI.
Public property Path Gets or sets the path to the resource referenced by the URI.
Public property Port Gets or sets the port number of the URI.
Public property Query Gets or sets any query information included in the URI.
Public property Scheme Gets or sets the scheme name of the URI.
Public property Uri Gets the Uri instance constructed by the specified UriBuilder instance.
Public property UserName The user name associated with the user that accesses the URI.
Top
  Name Description
Public method Equals Compares an existing Uri instance with the contents of the UriBuilder for equality. (Overrides Object.Equals(Object).)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Returns the hash code for the URI. (Overrides Object.GetHashCode().)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns the display string for the specified UriBuilder instance. (Overrides Object.ToString().)
Top

The UriBuilder class provides a convenient way to modify the contents of a Uri instance without creating a new Uri instance for each modification.

The UriBuilder properties provide read/write access to the read-only Uri properties so that they can be modified.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
Bug when assigning Query twice
There is a little bug with this class: if you assign "Query" property more than once, Uri becomes two "?" symbols after path.