.NET Framework Class Library
UrlBuilder Class
Starts a URL editor that allows a user to select or create a URL. This class cannot be inherited.
Assembly: System.Design (in System.Design.dll)
Syntax
Visual Basic (Declaration)
<SecurityPermissionAttribute(SecurityAction.Demand, Flags := SecurityPermissionFlag.UnmanagedCode)> _ Public NotInheritable Class UrlBuilder
Visual Basic (Usage)
Dim instance As UrlBuilder
C#
[SecurityPermissionAttribute(SecurityAction.Demand, Flags = SecurityPermissionFlag.UnmanagedCode)] public sealed class UrlBuilder
Visual C++
[SecurityPermissionAttribute(SecurityAction::Demand, Flags = SecurityPermissionFlag::UnmanagedCode)] public ref class UrlBuilder sealed
JScript
public final class UrlBuilder
Remarks
The BuildUrl method starts a user interface for selecting a URL.
Examples
The following code example shows how to use the BuildUrl method to launch a URL builder from a menu command at design time.
Visual Basic
' This method handles the "Launch Url Builder UI" menu command. ' Invokes the BuildUrl method of the System.Web.UI.Design.UrlBuilder. Private Sub launchUrlBuilder(ByVal sender As Object, ByVal e As EventArgs) ' Create a parent control. Dim c As 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( _ Me.Component, _ c, _ "http://www.example.com", _ "Select a URL", _ "", _ UrlBuilderOptions.None) End Sub
C#
// 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); }
Visual C++
// Create a parent control. System::Windows::Forms::Control^ c = gcnew 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 );
.NET Framework Security
-
SecurityPermission
for calling unmanaged code. Demand value: Demand; Associated enumeration: UnmanagedCode.
Inheritance Hierarchy
System.Object
System.Web.UI.Design.UrlBuilder
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.Platforms
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information
.NET Framework
Supported in: 3.5, 3.0, 2.0, 1.1, 1.0See Also