CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
xml_schema_content_processing.h
1
2
3#pragma once
4
5#include <system/object_ext.h>
6#include <system/enum.h>
7
8
9namespace System {
10
11namespace Xml {
12
13namespace Schema {
14
17{
19 None,
25 Skip,
31 Lax,
38 Strict
39};
40
41} // namespace Schema
42} // namespace Xml
43} // namespace System
44
46template<>
47struct EnumMetaInfo<System::Xml::Schema::XmlSchemaContentProcessing>
48{
49 static const ASPOSECPP_SHARED_API std::array<std::pair<System::Xml::Schema::XmlSchemaContentProcessing, const char_t*>, 4>& values();
50};
52
53
XmlSchemaContentProcessing
Provides information about the validation mode of any and anyAttribute element replacements.
Definition: xml_schema_content_processing.h:17
@ Strict
The schema processor must find a schema associated with the indicated namespace to validate the docum...
@ Lax
If the associated schema is found, the document items will be validated. No errors will be thrown oth...
@ Skip
Document items must consist of well-formed XML and are not validated by the schema.
@ Schema
Validate according to XML Schema definition language (XSD) schemas, including inline XML Schemas....
@ Xml
Serialize according to the XML 1.0 rules.
Definition: db_command.h:9