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!

XmlNamedNodeMap.GetNamedItem (String)

Retrieves an XmlNode specified by name.

[Visual Basic]
Overloads Overridable Public Function GetNamedItem( _
   ByVal name As String _
) As XmlNode
[C#]
public virtual XmlNode GetNamedItem(
   string name
);
[C++]
public: virtual XmlNode* GetNamedItem(
   String* name
);
[JScript]
public function GetNamedItem(
   name : String
) : XmlNode;

Parameters

name
Name of the node to retrieve.

Return Value

An XmlNode with the specified name. If a node with the specified name is not found in this XmlNamedNodeMap, null is returned.

See Also

XmlNamedNodeMap Class | XmlNamedNodeMap Members | System.NewXml Namespace | XmlNamedNodeMap.GetNamedItem Overload List