Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
[This feature was first implemented for MSXML 6.0.]
Returns a string that indicates the value of the version
attribute for the <schema>
declaration.
In MSXML 6.0, if there are multiple schema locations, this property is not implemented. It returns a zero length string.
Example
The following is an example of the version
attribute in an XML Schema.
<xsd:schema version="4.57.2" xmlns:xsd="www.w3.org/2001/XMLSCHEMA"
<xsd:element>
</xsd:element>
</xsd:schema>
JScript Syntax
var strVersion = oISchema.version;
Parameters
None.
Return Values
strVersion
A string. The value of the version
attribute of the XML Schema.
Visual Basic Syntax
strVersion = oISchema.version
Parameters
None.
Return Values
strVersion
A string. The value of the version
attribute of the XML Schema.
Implementation Syntax
HRESULT get_version(BSTR* version);
Parameters
version[out,retval]
A string. The value of the version
attribute of the XML Schema.
Return Values
S_OK
The value returned if successful.
E_Pointer
The value returned if the version
parameter is NULL.
E_FAIL
The value returned if something else is wrong.
Versioning
Implemented in: MSXML 6.0