Kinetica   C#   API  Version 7.2.3.0
SpecificRecord.cs
Go to the documentation of this file.
1 
18 using System;
19 using System.Collections.Generic;
20 using System.Linq;
21 using System.Text;
22 
23 namespace Avro.Specific
24 {
28  public interface ISpecificRecord
29  {
30  Schema Schema { get; }
31  object Get(int fieldPos);
32  void Put(int fieldPos, object fieldValue);
33  }
34 }
Base class for all schema types
Definition: Schema.cs:29
object Get(int fieldPos)
Interface class for generated classes
void Put(int fieldPos, object fieldValue)