瀏覽代碼

Missing XML docs

Brad Robinson 3 年之前
父節點
當前提交
3c5961ab7e
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      Topten.JsonKit/IJsonReader.cs

+ 3 - 0
Topten.JsonKit/IJsonReader.cs

@@ -61,6 +61,7 @@ namespace Topten.JsonKit
         /// <summary>
         /// Reads a dictinary from the input stream
         /// </summary>
+        /// <param name="keyType">The type of the dictionary key</param>
         /// <param name="callback">A callback that will be invoked for each encountered dictionary key</param>
         void ParseDictionary(Type keyType, Action<object> callback);
 
@@ -108,6 +109,7 @@ namespace Topten.JsonKit
         /// <summary>
         /// Reads a dictionary from the input stream
         /// </summary>
+        /// <param name="reader">The IJsonReader instance</param>
         /// <param name="callback">A callback that will be invoked for each encountered dictionary key</param>
         public static void ParseDictionary(this IJsonReader reader, Action<string> callback)
         {
@@ -117,6 +119,7 @@ namespace Topten.JsonKit
         /// <summary>
         /// Reads a dictionary from the input stream
         /// </summary>
+        /// <param name="reader">The IJsonReader instance</param>
         /// <param name="callback">A callback that will be invoked for each encountered dictionary key</param>
         public static void ParseDictionary<T>(this IJsonReader reader, Action<T> callback)
         {