2016-11-11 19:55:12 +00:00
|
|
|
namespace SocketHttpListener
|
|
|
|
{
|
|
|
|
/// <summary>
|
2019-01-13 19:27:29 +00:00
|
|
|
/// Contains the values that indicate whether the byte order is a Little-endian or Big-endian.
|
2016-11-11 19:55:12 +00:00
|
|
|
/// </summary>
|
2019-01-13 19:27:29 +00:00
|
|
|
public enum ByteOrder : byte
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Indicates a Little-endian.
|
|
|
|
/// </summary>
|
|
|
|
Little,
|
|
|
|
/// <summary>
|
|
|
|
/// Indicates a Big-endian.
|
|
|
|
/// </summary>
|
|
|
|
Big
|
|
|
|
}
|
2016-11-11 19:55:12 +00:00
|
|
|
}
|