blob: f7eca1d76b0526eb21cccd1d9a639c852c310027 [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,
csharptest74c5e0c2011-07-14 13:06:22 -050013
csharptest2b868842011-06-10 14:41:47 -050014 /// <summary> Requires that arrays items are nested in an &lt;item> element </summary>
15 ReadNestedArrays = 1,
16 }
17}