You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Some classes are now excluded
- Many minor fixes should hopefully reduce the number of errors reported by Sandcastle
- Some of the xml doc is generated by Atomineer, usually in cases where CEF lacks documentation
Copy file name to clipboardExpand all lines: CefSharp/Callback/IResourceReadCallback.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -7,17 +7,17 @@
7
7
namespaceCefSharp.Callback
8
8
{
9
9
/// <summary>
10
-
/// Callback for asynchronous continuation of <see cref="IResourceHandler.Read(System.IO.Stream, int, out int, IResourceReadCallback)"/>.
10
+
/// Callback for asynchronous continuation of <see cref="IResourceHandler.Read"/>.
11
11
/// </summary>
12
12
publicinterfaceIResourceReadCallback:IDisposable
13
13
{
14
14
/// <summary>
15
-
/// Callback for asynchronous continuation of <see cref="IResourceHandler.Read(System.IO.Stream, int, out int, IResourceReadCallback)"/>. If bytesRead == 0
15
+
/// Callback for asynchronous continuation of <see cref="IResourceHandler.Read"/>. If bytesRead == 0
16
16
/// the response will be considered complete.
17
17
/// </summary>
18
18
/// <param name="bytesRead">
19
19
/// If bytesRead == 0 the response will be considered complete.
20
-
/// If bytesRead > 0 then <see cref="IResourceHandler.Read(System.IO.Stream, int, out int, IResourceReadCallback)"/> will be called again until the request is complete (based on either the
20
+
/// If bytesRead > 0 then <see cref="IResourceHandler.Read"/> will be called again until the request is complete (based on either the
21
21
/// result or the expected content length). If bytesRead < 0 then the
22
22
/// request will fail and the bytesRead value will be treated as the error
0 commit comments