using System; namespace Google.ProtocolBuffers.Serialization { /// /// Options available for the xml reader output /// [Flags] public enum XmlReaderOptions { /// Simple xml formatting with no attributes None, /// Requires that arrays items are nested in an <item> element ReadNestedArrays = 1, } }