CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
entity_handling.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
15{
28};
29
30} // namespace Xml
31} // namespace System
32
34template<>
35struct EnumMetaInfo<System::Xml::EntityHandling>
36{
37 static const ASPOSECPP_SHARED_API std::array<std::pair<System::Xml::EntityHandling, const char_t*>, 2>& values();
38};
40
41
EntityHandling
Specifies how the XmlTextReader or XmlValidatingReader handle entities.
Definition: entity_handling.h:15
@ ExpandCharEntities
Expands character entities and returns general entities as XmlNodeType::EntityReference nodes.
@ ExpandEntities
Expands all entities and returns the expanded nodes.
@ Xml
Serialize according to the XML 1.0 rules.
Definition: db_command.h:9