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

[To be supplied.]

[C#] In C#, this member is the indexer for the XmlContainer class.

Overload List

Returns the child element with the given name.

[Visual Basic] Overloads Public Default ReadOnly Property Item(String) As XmlElement
[C#] public XmlElement this[String] {get;}
[C++] public: __property XmlElement* get_Item(String*);
[JScript] XmlContainer.Item (String)

Returns the child element with the given identifier.

[Visual Basic] Overloads Public Default ReadOnly Property Item(XmlIdent) As XmlElement
[C#] public XmlElement this[XmlIdent] {get;}
[C++] public: __property XmlElement* get_Item(XmlIdent*);
[JScript] XmlContainer.Item (XmlIdent)

Returns the child element with the given name and namespace URI.

[Visual Basic] Overloads Public Default ReadOnly Property Item(String, String) As XmlElement
[C#] public XmlElement this[String, String] {get;}
[C++] public: __property XmlElement* get_Item(String*, String*);
[JScript] XmlContainer.Item (String, String)

See Also

XmlContainer Class | XmlContainer Members | System.Xml Namespace