Kinetica   C#   API  Version 7.2.3.0
UnnamedSchema.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
24 {
28  public abstract class UnnamedSchema : Schema
29  {
30  protected UnnamedSchema(Type type, PropertyMap props) : base(type, props)
31  {
32  }
33 
34  public override string Name
35  {
36  get { return Tag.ToString().ToLower(); }
37  }
38  }
39 }
Base class for all unnamed schemas
UnnamedSchema(Type type, PropertyMap props)
Base class for all schema types
Definition: Schema.cs:29
Type
Enum for schema types
Definition: Schema.cs:34
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.
override string Name
Type Tag
Schema type property
Definition: Schema.cs:56