UrlBuilder Class
.NET Framework 4.5
Starts a URL editor that allows a user to select or create a URL. This class cannot be inherited.
Namespace: System.Web.UI.Design
Assembly: System.Design (in System.Design.dll)
The UrlBuilder type exposes the following members.
| Name | Description | |
|---|---|---|
![]() ![]() | BuildUrl(IComponent, Control, String, String, String) | Creates a UI to create or pick a URL. |
![]() ![]() | BuildUrl(IComponent, Control, String, String, String, UrlBuilderOptions) | Creates a UI to create or pick a URL, using the specified UrlBuilderOptions object. |
![]() ![]() | BuildUrl(IServiceProvider, Control, String, String, String, UrlBuilderOptions) | Creates a UI to create or pick a URL, using the specified UrlBuilderOptions object. |
![]() | Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
The following code example shows how to use the BuildUrl method to launch a URL builder from a menu command at design time.
// This method handles the "Launch Url Builder UI" menu command. // Invokes the BuildUrl method of the System.Web.UI.Design.UrlBuilder. private void launchUrlBuilder(object sender, EventArgs e) { // Create a parent control. System.Windows.Forms.Control c = new System.Windows.Forms.Control(); c.CreateControl(); // Launch the Url Builder using the specified control // parent, initial URL, empty relative base URL path, // window caption, filter string and URLBuilderOptions value. UrlBuilder.BuildUrl( this.Component, c, "http://www.example.com", "Select a URL", "", UrlBuilderOptions.None); }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
