[This feature was first implemented for MSXML 6.0.]
Returns an integer that corresponds to a declared constant of the SCHEMAPROCESSCONTENTS type. The following table shows each value and its description.
| Process content | Description |
|---|---|
| SCHEMAPROCESSCONTENTS_SKIP | Validation is skipped for the XML content. |
| SCHEMAPROCESSCONTENTS_LAX | Validation is performed if a schema can be located for the <anyAttribute> declaration. |
| SCHEMAPROCESSCONTENTS_STRICT | Validation is performed and an error is returned if the schema cannot be located. |
JScript Syntax
var oProcessContents = oISchemaAttributeGroup.processContents;
Parameters
None.
Return Values
oProcessContents
An object. The processContents for the any particle.
Visual Basic Syntax
Set oProcessContents = oISchemaAttributeGroup.processContents
Parameters
None.
Return Values
oProcessContents
An object. The processContents for the any particle.
C/C++ Syntax
HRESULT get_processContents(SCHEMAPROCESSCONTENTS* processContents);
Parameters
processContents[out,retval]
An object. The processContents for the any particle.
Return Values
S_OK
The value returned if successful.
E_POINTER
The value returned if the processContents object is NULL.
E_FAIL
The value returned if something else is wrong.
Versioning
Implemented in: MSXML 6.0