aboutsummaryrefslogtreecommitdiff
path: root/SocketHttpListener/ByteOrder.cs
blob: f5db52fd7239880b1965dbfe7f507221a441b35c (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
  }
}