CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
xml_output_method.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 Xml = 0,
19 Html = 1,
21 Text = 2,
23 AutoDetect = 3
24};
25
26} // namespace Xml
27} // namespace System
28
30template<>
31struct EnumMetaInfo<System::Xml::XmlOutputMethod>
32{
33 static const ASPOSECPP_SHARED_API std::array<std::pair<System::Xml::XmlOutputMethod, const char_t*>, 4>& values();
34};
36
37
XmlOutputMethod
Specifies the method used to serialize the XmlWriter output.
Definition: xml_output_method.h:15
@ AutoDetect
Use the XSLT rules to choose between the XmlOutputMethod::Xml and XmlOutputMethod::Html output method...
@ Html
Serialize according to the HTML rules specified by XSLT.
@ Xml
Serialize according to the XML 1.0 rules.
Definition: db_command.h:9