We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ca7378 commit c45dd4bCopy full SHA for c45dd4b
Qiniu/Http/CompletionHandler.cs
@@ -7,4 +7,12 @@ namespace Qiniu.Http
7
/// <param name="respInfo">请求回复信息</param>
8
/// <param name="response">请求回复内容</param>
9
public delegate void CompletionHandler(ResponseInfo respInfo, string response);
10
+
11
+ /// <summary>
12
+ /// HTTP请求结果(非json/二进制数据)
13
+ /// </summary>
14
+ /// <param name="respInfo"></param>
15
+ /// <param name="respData"></param>
16
+ public delegate void RecvDataHandler(ResponseInfo respInfo, byte[] respData);
17
18
}
0 commit comments