JsonWriter.Put C# (CSharp) Method

Put() private method

private Put ( string str ) : void
str string
return void
        private void Put (string str)
        {
            if (pretty_print && ! context.ExpectingValue)
                for (int i = 0; i < indentation; i++)
                    writer.Write (' ');

            writer.Write (str);
        }