csharptest | 2b86884 | 2011-06-10 14:41:47 -0500 | [diff] [blame^] | 1 | using System; |
2 | |||||
3 | namespace 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 <item> element </summary> | ||||
14 | ReadNestedArrays = 1, | ||||
15 | } | ||||
16 | } |