get Method (Compact 2013)

3/26/2014

Returns a read-only XML Document Object Model (DOM) node that contains the <Schema> element.

Syntax

var objXMLDOMNode = objXMLDOMSchemaCol.get(namespaceURI);
HRESULT get(
  BSTR namespaceURI,
  IXMLDOMNode** schemaNode
);

Parameters

Script

  • namespaceURI
    The namespace Uniform Resource Identifier (URI) associated with the schema to return.

    This can be any string that can be used in an xmlns attribute, but it cannot contain entity references. The same white space normalization that occurs on the xmlns attribute also occurs on this argument (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++

  • namespaceURI
    [in] The namespace URI associated with the schema to return.

    This may be any string that can be used in an xmlns attribute, but it cannot contain entity references. The same white space normalization that occurs on the xmlns attribute also occurs on this argument (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).

  • schemaNode
    [out, retval] Read-only IXMLDOMNode that represents the schema that is returned.

Return Value

Script

None.

C/C++

  • S_OK
    Value returned if successful.

Remarks

This will not necessarily be the same document object provided by the add Method, because the add method may have copied the schema. For inline schemas, this will apply directly to the <Schema> node embedded within the document.

This method applies to the following objects and interfaces:

XMLSchemaCache/IXMLDOMSchemaCollection.

Requirements

Header

msxml2.h,
msxml2.idl

Library

uuid.lib

See Also

Reference

XML DOM Methods