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!

XmlContext.CreateText

Creates an XmlText instance in this context.

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

Parameters

text
The characters of the text node.

Return Value

An XmlText instance with the given text.

Exceptions

Exception Type Condition
ArgumentException If text is null.

See Also

XmlContext Class | XmlContext Members | System.Xml Namespace