blob: 1ea2e688fbf9c121e6f4bc8b60f81e8c525df8a1 [file] [log] [blame]
// ------------------------------------------------------------------------------
// <auto-generated>
// Generated by avrogen.vshost.exe, version 0.9.0.0
// Changes to this file may cause incorrect behavior and will be lost if code
// is regenerated
// </auto-generated>
// ------------------------------------------------------------------------------
namespace org.apache.avro.test
{
using System;
using System.Collections.Generic;
using System.Text;
using Avro;
using Avro.Specific;
public partial class TestError : SpecificException
{
private static Schema _SCHEMA = Avro.Schema.Parse("{\"type\":\"error\",\"name\":\"TestError\",\"namespace\":\"org.apache.avro.test\",\"fields\":[{" +
"\"name\":\"message\",\"type\":\"string\"}]}");
private string _message;
public override Schema Schema
{
get
{
return TestError._SCHEMA;
}
}
public string message
{
get
{
return this._message;
}
set
{
this._message = value;
}
}
public override object Get(int fieldPos)
{
switch (fieldPos)
{
case 0: return this.message;
default: throw new AvroRuntimeException("Bad index " + fieldPos + " in Get()");
};
}
public override void Put(int fieldPos, object fieldValue)
{
switch (fieldPos)
{
case 0: this.message = (System.String)fieldValue; break;
default: throw new AvroRuntimeException("Bad index " + fieldPos + " in Put()");
};
}
}
}