CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
xml_space.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 XmlSpace
15{
17 None = 0,
19 Default = 1,
21 Preserve = 2
22};
23
24} // namespace Xml
25} // namespace System
26
28template<>
29struct EnumMetaInfo<System::Xml::XmlSpace>
30{
31 static const ASPOSECPP_SHARED_API std::array<std::pair<System::Xml::XmlSpace, const char_t*>, 3>& values();
32};
34
35
XmlSpace
Specifies the current xml:space scope.
Definition: xml_space.h:15
@ Preserve
The xml:space scope equals preserve.
@ Xml
Serialize according to the XML 1.0 rules.
Definition: db_command.h:9
std::enable_if< IsExceptionWrapper< T >::value, constT & >::type Default()
Returns the default-constructed instance of the specified type.
Definition: default.h:16