CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
read_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 ReadState
15{
17 Initial = 0,
19 Interactive = 1,
21 Error = 2,
23 EndOfFile = 3,
25 Closed = 4
26};
27
28} // namespace Xml
29} // namespace System
30
32template<>
33struct EnumMetaInfo<System::Xml::ReadState>
34{
35 static const ASPOSECPP_SHARED_API std::array<std::pair<System::Xml::ReadState, const char_t*>, 5>& values();
36};
38
39
@ Xml
Serialize according to the XML 1.0 rules.
ReadState
Specifies the state of the reader.
Definition: read_state.h:15
@ Closed
The XmlReader::Close method has been called.
@ Interactive
The XmlReader::Read method has been called. Additional methods may be called on the reader.
@ Initial
The XmlReader::Read method has not been called.
Definition: db_command.h:9