Avro.ArraySchema.ArraySchema C# (CSharp) Method

ArraySchema() public method

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