processContents Property
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. |
[Script]
Implementation Syntax
var oProcessContents = oISchemaAttributeGroup.processContents;
Parameters
None.
Return Values
- oProcessContents
- An object. The
processContents
for the any particle.
[Visual Basic]
Implementation Syntax
Set oProcessContents = oISchemaAttributeGroup.processContents
Parameters
None.
Return Values
- oProcessContents
- An object. The
processContents
for the any particle.
[C/C++]
Implementation 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.
To view reference information for Visual Basic or C/C++ only, click the Language Filter button in the upper-left corner of the page.
See Also
any Element | anyAttribute Element
Applies to: ISchemaAny Interface