NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlNode.InnerXml

Gets or sets the markup representing just the children of this node.

[Visual Basic]
Overridable Public Property InnerXml As String
[C#]
public string InnerXml {virtual get; virtual set;}
[C++]
public: __property virtual String* get_InnerXml();
public: __property virtual void set_InnerXml(String*);
[JScript]
public function get InnerXml() : String;
public function set InnerXml(String);

Property Value

The markup of the children of this node.

Remarks

This is also settable which replaces the children of the node with the parsed contents of the given string. The parsing is done in the current namespace context.

See Also

XmlNode Class | XmlNode Members | System.NewXml Namespace