Enum Side
- Namespace
- DatabentoDotNet.Dbn
- Assembly
- DatabentoDotNet.Dbn.dll
The side of the market: for resting orders, the side of the book; for trades, the side of the aggressor.
public enum Side : byte
- Extension Methods
Fields
Ask = 65A sell order, or the sell side of a trade's aggressor.
Bid = 66A buy order, or the buy side of a trade's aggressor.
None = 78No side specified by the original source.
Remarks
Char-valued: each variant's numeric value is its ASCII character code, and that character is
the only wire/text form this type has — there is no separate string representation. Use
ToChar(Side) to read it as a char. Rust marks
None as the type's default, but C#'s implicit default(Side) is the zero
value (Side)0, which has no name here — reference None explicitly where
upstream's default matters.