CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
xml_schema_form.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
16enum class XmlSchemaForm
17{
19 None,
24};
25
26} // namespace Schema
27} // namespace Xml
28} // namespace System
29
31template<>
32struct EnumMetaInfo<System::Xml::Schema::XmlSchemaForm>
33{
34 static const ASPOSECPP_SHARED_API std::array<std::pair<System::Xml::Schema::XmlSchemaForm, const char_t*>, 3>& values();
35};
37
XmlSchemaForm
Indicates if attributes or elements need to be qualified with a namespace prefix.
Definition: xml_schema_form.h:17
@ Qualified
Elements and attributes must be qualified with a namespace prefix.
@ Unqualified
Elements and attributes are not required to be qualified with a namespace prefix.
@ 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