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,
|
csharptest | 74c5e0c | 2011-07-14 13:06:22 -0500 | [diff] [blame] | 13 |
|
csharptest | 2b86884 | 2011-06-10 14:41:47 -0500 | [diff] [blame] | 14 | /// <summary> Requires that arrays items are nested in an <item> element </summary>
|
| 15 | ReadNestedArrays = 1,
|
| 16 | }
|
| 17 | } |