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 Constructor (XmlContext)

Creates a new XML document with a given context.

[Visual Basic]
Overloads Public Sub New( _
   ByVal context As XmlContext _
)
[C#]
public XmlDocument(
   XmlContext context
);
[C++]
public: XmlDocument(
   XmlContext* context
);
[JScript]
public function XmlDocument(
   context : XmlContext
);

Parameters

context
The XML context with which to associate the document, or null to create a new XML context.

Remarks

The document is associated with the given context, or a new XML context is created if context is null.

The Root property of the new document is null until a root element is manually added to the document.

See Also

XmlDocument Class | XmlDocument Members | System.Xml Namespace | XmlDocument Constructor Overload List