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
Copy file name to clipboardExpand all lines: CefSharp/IUrlRequestClient.cs
+16-16Lines changed: 16 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -13,51 +13,51 @@ namespace CefSharp
13
13
publicinterfaceIUrlRequestClient
14
14
{
15
15
/// <summary>
16
-
/// Called on the IO thread when the browser needs credentials from the user.
16
+
/// Called on the CEF IO thread when the browser needs credentials from the user.
17
17
/// This method will only be called for requests initiated from the browser process.
18
18
/// </summary>
19
19
/// <param name="isProxy">indicates whether the host is a proxy server.</param>
20
20
/// <param name="host">the hostname.</param>
21
21
/// <param name="port">the port number.</param>
22
-
/// <param name="realm"></param>
23
-
/// <param name="scheme"></param>
22
+
/// <param name="realm">realm</param>
23
+
/// <param name="scheme">scheme</param>
24
24
/// <param name="callback">is a callback for authentication information</param>
25
25
/// <returns>
26
-
/// Return true to continue the request and call IAuthCallback.Continue() when the authentication information is available.
27
-
/// If the request has an associated browser/frame then returning false will result in a call to GetAuthCredentials
28
-
/// on the IRequestHandler associated with that browser, if any.
26
+
/// Return true to continue the request and call <see cref="IAuthCallback.Continue(string, string)"/> when the authentication information is available.
27
+
/// If the request has an associated browser/frame then returning false will result in a call to <see cref="IRequestHandler.GetAuthCredentials"/>
28
+
/// on the <see cref="IRequestHandler"/> associated with that browser, if any.
29
29
/// Otherwise, returning false will cancel the request immediately.
/// Called when some part of the response is read. This method will not be called if the UR_FLAG_NO_DOWNLOAD_DATA flag is set on the request.
34
+
/// Called when some part of the response is read. This method will not be called if the <see cref="UrlRequestFlags.NoDownloadData"/> flag is set on the request.
35
35
/// </summary>
36
-
/// <param name="request"></param>
37
-
/// <param name="data">Contains the current bytes received since the last call.</param>
36
+
/// <param name="request">request</param>
37
+
/// <param name="data">A stream containing the bytes received since the last call. Cannot be used outside the scope of this method. </param>
0 commit comments