Share via


getQualifiedItem Method (Windows CE 5.0)

Send Feedback

Returns the attribute with the specified namespace and attribute name.

[Script]

Script Syntax

var objXMLDOMNode=oXMLDOMNamedNodeMap.getQualifiedItem(baseName,namespaceURI);

Script Parameters

  • baseName
    String specifying the base name of the attribute, without namespace qualification.
  • namespaceURI
    String specifying the namespace prefix that qualifies the attribute name.

Script Return Value

Object. Returns the 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++]

C/C++ Syntax

HRESULT getQualifiedItem(BSTRbaseName,BSTRnamespaceURI,IXMLDOMNode**qualifiedItem);

C/C++ Parameters

  • baseName
    [in] Base name of the attribute, without namespace qualification.
  • namespaceURI
    [in] Namespace prefix that qualifies the attribute name.
  • qualifiedItem
    [out, retval] 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.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Msxml2.h, Msxml2.idl.
Link Library: Uuid.lib.

General Remarks

This member is an extension of the Worldwide Web Consortium (W3C) Document Object Model (DOM).

This method applies to the following interface:

IXMLDOMNamedNodeMap

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.