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

ArraySchema() 공개 메소드

public ArraySchema ( Schema items ) : System
items Schema
리턴 System
        public ArraySchema(Schema items)
            : base(Type.ARRAY)
        {
            if (null == items) throw new ArgumentNullException("items", "items cannot be null.");
            this.itemSchema = items;
        }