aboutsummaryrefslogtreecommitdiff
path: root/src/ProtocolBuffers/Serialization/XmlReaderOptions.cs
blob: fc75e4b5dc55e8cfbfd51c7a63e67126c3e72ca7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

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