aboutsummaryrefslogblamecommitdiff
path: root/csharp/src/ProtocolBuffers.Serialization/XmlReaderOptions.cs
blob: f7eca1d76b0526eb21cccd1d9a639c852c310027 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                          
 



                                                                                               
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,
    }
}