Xml.DocumentContent Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets a string that contains the XML document to display in the Xml control.
public:
property System::String ^ DocumentContent { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Browsable(false)]
public string DocumentContent { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.DocumentContent : string with get, set
Public Property DocumentContent As String
Property Value
A string that contains the XML document to display in the Xml control.
- Attributes
Remarks
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.
Note
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.