CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
xml_node_order.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 XmlNodeOrder
15{
17 Before,
19 After,
21 Same,
24 Unknown
25};
26
27} // namespace Xml
28} // namespace System
29
31template<>
32struct EnumMetaInfo<System::Xml::XmlNodeOrder>
33{
34 static const ASPOSECPP_SHARED_API std::array<std::pair<System::Xml::XmlNodeOrder, const char_t*>, 4>& values();
35};
37
38
XmlNodeOrder
Describes the document order of a node compared to a second node.
Definition: xml_node_order.h:15
@ After
The current node of this navigator is after the current node of the supplied navigator.
@ Before
The current node of this navigator is before the current node of the supplied navigator.
@ Same
The two navigators are positioned on the same node.
@ Xml
Serialize according to the XML 1.0 rules.
Definition: db_command.h:9