blob: fc75e4b5dc55e8cfbfd51c7a63e67126c3e72ca7 [file] [log] [blame]
csharptest2b868842011-06-10 14:41:47 -05001using System;
2
3namespace Google.ProtocolBuffers.Serialization
4{
5 /// <summary>
6 /// Options available for the xml reader output
7 /// </summary>
8 [Flags]
9 public enum XmlReaderOptions
10 {
11 /// <summary> Simple xml formatting with no attributes </summary>
12 None,
13 /// <summary> Requires that arrays items are nested in an &lt;item> element </summary>
14 ReadNestedArrays = 1,
15 }
16}