Interface IFixReader
- Namespace
- StockSharp.Fix.Native
- Assembly
- StockSharp.Fix.Core.dll
The interface describing the reader of data recorded in the FIX protocol format.
public interface IFixReader : IFixBase
- Inherited Members
- Extension Methods
Properties
IsValueRead
Whether the tag value was read.
bool IsValueRead { get; }
Property Value
LastTag
Last read tag.
FixTags LastTag { get; }
Property Value
Methods
ClearState()
Clear state.
void ClearState()
FlushDump()
Get data log.
string FlushDump()
Returns
- string
Data log.
ReadBool()
Read bool value.
bool ReadBool()
Returns
ReadBytes(byte[], int, int)
Read byte array value.
void ReadBytes(byte[] buffer, int index, int count)
Parameters
ReadChar()
Read char value.
char ReadChar()
Returns
ReadDateTime(FastDateTimeParser)
Read DateTime value.
DateTime ReadDateTime(FastDateTimeParser parser)
Parameters
parser
FastDateTimeParserTime parser. Required if data will be transferred as string.
Returns
ReadDecimal()
Read decimal value.
decimal ReadDecimal()
Returns
ReadInt()
Read int value.
int ReadInt()
Returns
ReadLong()
Read long value.
long ReadLong()
Returns
ReadString()
Read string value.
string ReadString()
Returns
ReadTag()
To read the following tag.
FixTags ReadTag()
Returns
- FixTags
The next tag. The -1 indicates the end of data.
ReadTimeSpan(FastTimeSpanParser)
Read TimeSpan value.
TimeSpan ReadTimeSpan(FastTimeSpanParser parser)
Parameters
parser
FastTimeSpanParserTime parser. Required if data will be transferred as string.
Returns
SkipValue()
Skip value.
void SkipValue()