Enumerates the different byte orders.

Namespace:  Quanser.Communications
Assembly:  Quanser.Communications (in Quanser.Communications.dll)

Syntax

Visual Basic (Declaration)
Public Enumeration ByteOrder
C#
public enum ByteOrder
Visual C++
public enum class ByteOrder
JavaScript
Quanser.Communications.ByteOrder = function();
Quanser.Communications.ByteOrder.createEnum('Quanser.Communications.ByteOrder', false);

Members

Member nameDescription
BigEndian
Big endian (Motorola) byte order
LittleEndian
Little endian (Intel) byte order
NativeEndian
Native byte order

Remarks

The Stream class supports the reception and transmission of binary data types. It is also capable of accounting for differences in the endianness of the endpoint platforms by swapping bytes within individual binary values. This enumeration defines the different byte orders supported.

See Also