ByteOrder.cs 407 B

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