XmlUrlEditor Class
.NET Framework 3.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 calling unmanaged code. Demand value: Demand; 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
Community Additions
ADD
Show: