namespaceURI Property (XMLSchemaCache/IXMLSchemaCollection) (Compact 2013)

3/26/2014

Returns the namespace at the specified index.

Syntax

strNamespaceURI = objXMLDOMSchemaCollection.namespaceURI(index);
HRESULT get_namespaceURI(long index, BSTR* length);

Parameters

Script

  • index
    The index between 0 and (count-1).

C/C++

  • index
    [in] The index between 0 and count -1.
  • length
    [out, retval] The namespace URI at the given index. This string is a normalized version of the one provided in the add Method (that is, leading and trailing white space is trimmed, new lines are converted to spaces, and multiple adjacent white space characters are collapsed into one space).

Return Values

Script

String. Returns the namespace URI at the given index. This string is a normalized version of the one provided in the add Method (that is, leading and trailing white space is trimmed, new lines are converted to spaces, and multiple adjacent white space characters are collapsed into one space).

C/C++

  • E_INVALIDARG
    Value returned if the index is out of range.

Remarks

The namespaceURI property allows you to iterate through the collection to discover its contents. You can then use the get method (namespace) to see if there is an associated schema.

This is the default collection property, so you can do the following.

var uri = xmldoc.namespaces(1)

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

XMLSchemaCache/IXMLDOMSchemaCollection

Requirements

Header

msxml2.h,
msxml2.idl

See Also

Reference

XML DOM Properties
get Method