JsonFx.Client.JsonMarkupWriter.WriteDictionary C# (CSharp) Method

WriteDictionary() protected method

protected WriteDictionary ( IEnumerable value ) : void
value IEnumerable
return void
        protected override void WriteDictionary(IEnumerable value)
        {
            this.MarkupWriteLine();
            this.markup.Write(JsonMarkupWriter.ObjectStart);

            base.WriteDictionary(value);

            this.MarkupWriteLine();
            this.markup.Write(JsonMarkupWriter.ObjectEnd);
        }