Avro C#
|
Generic wrapper class for writing data from specific objects. More...
Public Member Functions | |
SpecificWriter (Schema schema) | |
Initializes a new instance of the SpecificWriter<T> class. | |
SpecificWriter (SpecificDefaultWriter writer) | |
Initializes a new instance of the SpecificWriter<T> class using the provided SpecificDefaultWriter. | |
![]() | |
GenericWriter (Schema schema) | |
Initializes a new instance of the GenericWriter<T> class. | |
GenericWriter (DefaultWriter writer) | |
Initializes a new instance of the GenericWriter<T> class from a DefaultWriter. | |
void | Write (T value, Encoder encoder) |
Serializes the given object using this writer's schema. | |
Additional Inherited Members | |
![]() | |
Schema | Schema [get] |
Schema used to write the data. | |
![]() |
Generic wrapper class for writing data from specific objects.
T | type name of specific object |
|
inline |
Initializes a new instance of the SpecificWriter<T> class.
schema | Schema to use when writing. |
|
inline |
Initializes a new instance of the SpecificWriter<T> class using the provided SpecificDefaultWriter.
writer | Default writer to use. |