Avro C#
|
Interface class for generated classes More...
Public Member Functions | |
object | Get (int fieldPos) |
Return the value of a field given its position in the schema. This method is not meant to be called by user code, but only by SpecificDatumReader<T> implementations. More... | |
void | Put (int fieldPos, object fieldValue) |
Set the value of a field given its position in the schema. This method is not meant to be called by user code, but only by SpecificDatumWriter<T> implementations. More... | |
Properties | |
Schema | Schema [get] |
Schema of this instance. More... | |
Interface class for generated classes
object Avro.Specific.ISpecificRecord.Get | ( | int | fieldPos | ) |
Return the value of a field given its position in the schema. This method is not meant to be called by user code, but only by SpecificDatumReader<T> implementations.
fieldPos | Position of the field. |
Implemented in Avro.Specific.SpecificException.
void Avro.Specific.ISpecificRecord.Put | ( | int | fieldPos, |
object | fieldValue | ||
) |
Set the value of a field given its position in the schema. This method is not meant to be called by user code, but only by SpecificDatumWriter<T> implementations.
fieldPos | Position of the field. |
fieldValue | Value of the field. |
Implemented in Avro.Specific.SpecificException.