using System; namespace Google.ProtocolBuffers.Serialization { /// /// Options available for the xml writer output /// [Flags] public enum XmlWriterOptions { /// Simple xml formatting with no attributes None, /// Writes the 'value' attribute on all enumerations with the numeric identifier OutputEnumValues = 0x1, /// Embeds array items into child <item> elements OutputNestedArrays = 0x4, /// Outputs the 'type' attribute for compatibility with the JsonReaderWriterFactory /// This option must, by nessessity, also enable NestedArrayItems OutputJsonTypes = 0x8, } }