Exemple #1
0
 internal AvroDeserializer(AvroSerialization <T> _enclosing, Type clazz)
 {
     this._enclosing = _enclosing;
     this.reader     = this._enclosing.GetReader(clazz);
 }
Exemple #2
0
 internal AvroSerializer(AvroSerialization <T> _enclosing, Type clazz)
 {
     this._enclosing = _enclosing;
     this.writer     = this._enclosing.GetWriter(clazz);
 }