Xml::DocumentContent Property

 

Sets a string that contains the XML document to display in the Xml control.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public:
[BrowsableAttribute(false)]
property String^ DocumentContent {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

A string that contains the XML document to display in the Xml control.

The XML document to display in the Xml control is specified in one of three ways. You can specify a System.Xml::XmlDocument object, an XML string, or an XML file by setting the appropriate property. The DocumentContent property is used to specify an XML string (representing an XML document) to display in the control. The DocumentContent property is not typically programmatically set, or set as an attribute of the control. Instead, the XML string is usually set declaratively by placing text between the opening and closing <asp:Xml> tags of the control.

System_CAPS_noteNote

Although the DocumentContent property contains both get and set accessors, only the set accessor is useful. If you use the get accessor, String::Empty is returned.

.NET Framework
Available since 1.1
Return to top
Show: