139 void ReadFixed(
byte[] buffer,
int start,
int length);
double ReadDouble()
Reads a double Avro type
int ReadEnum()
Reads an enum AvroType
void SkipLong()
Skips a long Avro type on the stream.
string ReadString()
Reads a string Avro type
void SkipBoolean()
Skips a boolean Avro type on the stream.
bool ReadBoolean()
Read a boolean Avro type
void SkipDouble()
Skips a double Avro type on the stream.
void SkipString()
Skips a string Avro type on the stream.
int ReadInt()
Reads an int Avro type.
float ReadFloat()
Reads a float Avro type
long ReadLong()
Reads a long Avro type.
byte [] ReadBytes()
Reads the bytes Avro type
long ReadArrayStart()
Starts reading the array Avro type.
long ReadArrayNext()
See ReadArrayStart().
Decoder is used to decode Avro data on a stream.
void SkipFloat()
Skips a float Avro type on the stream.
void ReadFixed(byte[] buffer)
A convenience method for ReadFixed(buffer, 0, buffer.Length);
int ReadUnionIndex()
Reads the index, which determines the type in an union Avro type.
long ReadMapNext()
See ReadMapStart().
void SkipInt()
Skips a int Avro type on the stream.
long ReadMapStart()
Starts reading the map Avro type.
void SkipNull()
Skips a null Avro type on the stream.
void ReadNull()
Reads a null Avro type.
void SkipBytes()
Skips a bytes Avro type on the stream.