Click to return to the XML (Extensible Markup Language) home page    
IXMLDOMNamedNodeMap::getN...     IXMLDOMNamedNodeMap::item...     IXMLDOMNamedNodeMap Inter...    
Web Workshop  |  XML (Extensible Markup Language)

IXMLDOMNamedNodeMap::getQualifiedItem Method


Returns the attribute with the specified namespace and attribute name.

Visual Basic Syntax

Set objXMLDOMNode = oXMLDOMNamedNodeMap.getQualifiedItem(baseName, namespaceURI)

C/C++ Syntax

HRESULT getQualifiedItem(
    BSTR baseName,
    BSTR nameSpaceURI,
    IXMLDOMNode **qualifiedItem);

Parameters

baseName
[in] Base name of the attribute, without namespace qualification.
nameSpaceURI
[in] Namespace prefix that qualifies the attribute name.
qualifiedItem
[out] Attribute node specified by the baseName and nameSpaceURI parameters. Returns NULL if the attribute is not in the collection, or if the item is not an attribute.

C/C++ Return Values

S_OK
Value returned if successful.
S_FALSE
Value when returning null. 
E_INVALIDARG
Value returned if qualifiedItem is null.

 



Back to topBack to top

Did you find this topic useful? Suggestions for other topics? Write us!

© 1999 Microsoft Corporation. All rights reserved. Terms of use.