Enum SerialPortParity
Specifies the parity bit.
Namespace:Neodynamic.SDK.Web
Assembly:cs.temp.dll.dll
Syntax
public enum SerialPortParity
Fields
Even
Sets the parity bit so that the count of bits set is an even number.
Declaration
Even = 2
Field Value
Type | Description |
---|---|
SerialPortParity |
Mark
Leaves the parity bit set to 1.
Declaration
Mark = 3
Field Value
Type | Description |
---|---|
SerialPortParity |
None
No parity check occurs.
Declaration
None = 0
Field Value
Type | Description |
---|---|
SerialPortParity |
Odd
Sets the parity bit so that the count of bits set is an odd number.
Declaration
Odd = 1
Field Value
Type | Description |
---|---|
SerialPortParity |
Space
Leaves the parity bit set to 0.
Declaration
Space = 4
Field Value
Type | Description |
---|---|
SerialPortParity |