Avro.ArraySchema.WriteProperties C# (CSharp) Method

WriteProperties() protected method

protected WriteProperties ( Newtonsoft writer ) : void
writer Newtonsoft
return void
        protected override void WriteProperties(Newtonsoft.Json.JsonTextWriter writer)
        {
            if (null != this.itemSchema)
            {
                writer.WritePropertyName("items");
                this.itemSchema.writeJson(writer);
            }
        }
    }