CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
dtd_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
14enum class DtdProcessing
15{
20 Ignore,
22 Parse
23};
24
25} // namespace Xml
26} // namespace System
27
29template<>
30struct EnumMetaInfo<System::Xml::DtdProcessing>
31{
32 static const ASPOSECPP_SHARED_API std::array<std::pair<System::Xml::DtdProcessing, const char_t*>, 3>& values();
33};
35
36
@ Xml
Serialize according to the XML 1.0 rules.
DtdProcessing
Specifies the options for processing DTDs. The DtdProcessing enumeration is used by the XmlReaderSett...
Definition: dtd_processing.h:15
@ Prohibit
Specifies that when a DTD is encountered, an XmlException is thrown with a message that states that D...
@ Parse
Used for parsing DTDs.
Definition: db_command.h:9