Avro.NamedSchema.WriteProperties C# (CSharp) Method

WriteProperties() protected method

protected WriteProperties ( Newtonsoft writer ) : void
writer Newtonsoft
return void
        protected override void WriteProperties(Newtonsoft.Json.JsonTextWriter writer)
        {
            base.WriteProperties(writer);
            this.name.WriteJson(writer);

            //JsonHelper.writeIfNotNullOrEmpty(writer, "name", this.Name);
            JsonHelper.writeIfNotNullOrEmpty(writer, "namespace", this.name.space);
        }