瀏覽代碼

Formatting

Brad Robinson 12 年之前
父節點
當前提交
8a434373f5
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      readme.md

+ 6 - 0
readme.md

@@ -433,12 +433,18 @@ The IJsonWriter interface writes to the Json output stream:
 
 
 *WriteStringLiteral* - writes a string literal to the output stream, including the surrounding quotes and
 *WriteStringLiteral* - writes a string literal to the output stream, including the surrounding quotes and
  escaping the content as required.
  escaping the content as required.
+
 *WriteRaw* - writes directly to the output stream.  Use for comments, or self genarated Json data.
 *WriteRaw* - writes directly to the output stream.  Use for comments, or self genarated Json data.
+
 *WriteArray* - writes an array to the output stream.  The callback should write each element.
 *WriteArray* - writes an array to the output stream.  The callback should write each element.
+
 *WriteDictionary* - writes a dictionary to the output stream.  The callback should write each element.
 *WriteDictionary* - writes a dictionary to the output stream.  The callback should write each element.
+
 *WriteValue* - formats and writes any object value.
 *WriteValue* - formats and writes any object value.
+
 *WriteElement* - call from the callback of WriteArray to indicate that the next element is about to be 
 *WriteElement* - call from the callback of WriteArray to indicate that the next element is about to be 
 written.  Causes PetaJson to write separating commas and whitespace.
 written.  Causes PetaJson to write separating commas and whitespace.
+
 *WriteKey* - call from the callback of WriteDictionary to write the key part of the next element.  Writes
 *WriteKey* - call from the callback of WriteDictionary to write the key part of the next element.  Writes
 whitespace, separating commas, the key and it's quotes, the colon.
 whitespace, separating commas, the key and it's quotes, the colon.