namespaceURI Property (IXMLDOMNode) (Windows CE 5.0)

Send Feedback

Returns the Uniform Resource Identifier (URI) for the namespace.

[Script]

Script Syntax

strValue= oXMLDOMNode.namespaceURI;

Script Parameters

None.

Script Return Value

[C/C++]

C/C++ Syntax

HRESULT get_namespaceURI(BSTR* namespaceURI);

C/C++ Parameters

  • namespaceURI
    [out, retval] URI for the namespace. This refers to the "uuu" portion of the namespace declaration xmlns:nnn="uuu".

C/C++ Return Values

  • S_OK
    Value returned if successful.
  • S_FALSE
    Value returned when there is no namespace.
  • E_INVALIDARG
    Value returned if namespaceURI is Null.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Msxml2.h, Msxml2.idl.

General Remarks

Returns the URI for the namespace. This refers to the "uuu" portion of the namespace declaration xmlns:nnn="uuu".

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

This property is read-only, and applies to the following objects and interfaces:

DOMDocument, IXMLDOMAttribute, IXMLDOMCDATASection, IXMLDOMCharacterData, IXMLDOMComment, IXMLDOMDocumentFragment, IXMLDOMDocumentType, IXMLDOMElement, IXMLDOMEntity, IXMLDOMEntityReference, IXMLDOMNode, IXMLDOMNotation, IXMLDOMProcessingInstruction, IXMLDOMText, and IXTLRuntime

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.