aboutsummaryrefslogtreecommitdiff
path: root/SocketHttpListener/ByteOrder.cs
blob: c04150c74bf2014d8379636d9ba7359342692d31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace SocketHttpListener
{
    /// <summary>
    /// Contains the values that indicate whether the byte order is a Little-endian or Big-endian.
    /// </summary>
    public enum ByteOrder : byte
    {
        /// <summary>
        /// Indicates a Little-endian.
        /// </summary>
        Little,
        /// <summary>
        /// Indicates a Big-endian.
        /// </summary>
        Big
    }
}