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!

XmlDocument.CreateTextNode

Creates an XmlText with the specified text.

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

Parameters

text
The text for the text node.

Return Value

The new XmlTextNode.

See Also

XmlDocument Class | XmlDocument Members | System.NewXml Namespace