CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
new_line_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{
17 Replace = 0,
19 Entitize = 1,
21 None = 2
22};
23
24} // namespace Xml
25} // namespace System
26
28template<>
29struct EnumMetaInfo<System::Xml::NewLineHandling>
30{
31 static const ASPOSECPP_SHARED_API std::array<std::pair<System::Xml::NewLineHandling, const char_t*>, 3>& values();
32};
34
35
NewLineHandling
Specifies how to handle line breaks.
Definition: new_line_handling.h:15
@ Entitize
New line characters are entitized. This setting preserves all characters when the output is read by a...
@ Xml
Serialize according to the XML 1.0 rules.
Definition: db_command.h:9