mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			407 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			407 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 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
 | |
|     }
 | |
| }
 |