Avro.UnionSchema.UnionSchema C# (CSharp) Method

UnionSchema() private method

private UnionSchema ( List schemas ) : System
schemas List
return System
        private UnionSchema(List<Schema> schemas)
            : base(Type.UNION)
        {
            if (schemas.Count == 0)
            {
                throw new ArgumentNullException("Union members cannot be null or empty");
            }

            this.schemas = schemas;
        }