XmlUrlEditor Class
.NET Framework 2.0
Provides a user interface for selecting a URL that indicates the location of an XML file.
Namespace: System.Web.UI.Design
Assembly: System.Design (in system.design.dll)
Assembly: System.Design (in system.design.dll)
XmlUrlEditor is a UITypeEditor that provides a dialog for selecting a URL that indicates the location of an XML file.
public: property String^ XmlFileURL { [EditorAttribute(XmlUrlEditor::typeid,UITypeEditor::typeid)] String^ get() { return xmlURL; } [EditorAttribute(XmlUrlEditor::typeid,UITypeEditor::typeid)] void set( String^ value ) { xmlURL = value; } } private: String^ xmlURL;
/** @attribute EditorAttribute(System.Web.UI.Design.XmlUrlEditor.class,
UITypeEditor.class)
*/
/** @property
*/
public String get_XmlFileURL()
{
return xmlURL;
} //get_XmlFileURL
/** @property
*/
public void set_XmlFileURL(String value)
{
xmlURL = value;
} //set_XmlFileURL
private String xmlURL;
- SecurityPermission for operating with unmanaged code. Associated enumeration: UnmanagedCode
System.Object
System.Drawing.Design.UITypeEditor
System.Web.UI.Design.UrlEditor
System.Web.UI.Design.XmlUrlEditor
System.Drawing.Design.UITypeEditor
System.Web.UI.Design.UrlEditor
System.Web.UI.Design.XmlUrlEditor
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Show: