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.LoadXml

Loads the XML document from the specified string.

[Visual Basic]
Overridable Public Sub LoadXml( _
   ByVal xml As String _
)
[C#]
public virtual void LoadXml(
   string xml
);
[C++]
public: virtual void LoadXml(
   String* xml
);
[JScript]
public function LoadXml(
   xml : String
);

Parameters

xml
String containing the XML document to load.

Exceptions

Exception Type Condition
XmlException A load or parse error in the XML. In this case, the document will remain empty.

See Also

XmlDocument Class | XmlDocument Members | System.NewXml Namespace