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!

XmlContainer.AddText

Adds a new text node to the child list of this element.

[Visual Basic]
Public Function AddText( _
   ByVal text As String _
) As XmlText
[C#]
public XmlText AddText(
   string text
);
[C++]
public: XmlText* AddText(
   String* text
);
[JScript]
public function AddText(
   text : String
) : XmlText;

Parameters

text
The text of the text node to create and add.

Return Value

The newly created text node.

Remarks

An XmlText instance with the given text is created and added to the child list of this element.

See Also

XmlContainer Class | XmlContainer Members | System.Xml Namespace | Add