Avro C#
 All Classes Namespaces Functions Variables Enumerations Properties
Classes | Functions
Package Avro.Generic

Classes

interface  DatumReader
interface  DatumWriter
class  GenericEnum
 The defualt class to hold values for enum schema in GenericReader and GenericWriter. More...
class  GenericFixed
 The default type used by GenericReader and GenericWriter for objects for FixedSchema. More...
class  GenericReader
 A general purpose reader of data from avro streams. This can optionally resolve if the reader's and writer's schemas are different. This class is a wrapper around DefaultReader and offers a little more type safety. The default reader has the flexibility to return any type of object for each read call because the Read() method is generic. This class on the other hand can only return a single type because the type is a parameter to the class. Any user defined extension should, however, be done to DefaultReader. This class is sealed. More...
class  DefaultReader
 The default implementation for the generic reader. It constructs new .NET objects for avro objects on the stream and returns the .NET object. Users can directly use this class or, if they want to customize the object types for differnt Avro schema types, can derive from this class. There are enough hooks in this class to allow customization. More...
class  GenericRecord
 The default type used by GenericReader and GenericWriter for RecordSchema. More...
class  GenericWriter
 A typesafe wrapper around DefaultWriter. While a specific object of DefaultWriter allows the client to serialize a generic type, an object of this class allows only a single type of object to be serialized through it. More...
class  DefaultWriter
 A General purpose writer for serializing objects into a Stream using Avro. This class implements a default way of serializing objects. But one can derive a class from this and override different methods to acheive results that are different from the default implementation. More...

Functions

delegate T Reader< T > ()
delegate void Writer< T > (T t)
 All Classes Namespaces Functions Variables Enumerations Properties