Avro.Schema.Schema C# (CSharp) 메소드

Schema() 정적인 개인적인 메소드

static private Schema ( ) : System
리턴 System
        static Schema()
        {
            Dictionary<string, string> reservedprops = new Dictionary<string, string>(StringComparer.Ordinal);

            reservedprops.Add("type", null);
            reservedprops.Add("name", null);
            reservedprops.Add("namespace", null);
            reservedprops.Add("fields", null);     // Record
            reservedprops.Add("items", null);      // Array
            reservedprops.Add("size", null);       // Fixed
            reservedprops.Add("symbols", null);    // Enum
            reservedprops.Add("values", null);     // Map

            RESERVED_PROPS = reservedprops;
        }

Same methods

Schema::Schema ( Type type ) : System