CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
write_state.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 WriteState
15{
17 Start,
19 Prolog,
21 Element,
25 Content,
27 Closed,
31 Error
32};
33
34} // namespace Xml
35} // namespace System
36
38template<>
39struct EnumMetaInfo<System::Xml::WriteState>
40{
41 static const ASPOSECPP_SHARED_API std::array<std::pair<System::Xml::WriteState, const char_t*>, 7>& values();
42};
44
45
A base class for custom attributes. Objects of this class should only be allocated using System::Make...
Definition: attribute.h:16
@ Xml
Serialize according to the XML 1.0 rules.
@ Closed
The XmlReader::Close method has been called.
WriteState
Specifies the state of the XmlWriter.
Definition: write_state.h:15
@ Content
Indicates that element content is being written.
@ Prolog
Indicates that the prolog is being written.
Definition: db_command.h:9