XmlReaderOptions.cs 441 Bytes
Newer Older
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,
13

14 15 16 17
        /// <summary> Requires that arrays items are nested in an &lt;item> element </summary>
        ReadNestedArrays = 1,
    }
}