Skip to content

Commit 76f671f

Browse files
committed
Renamed an argument and added more XML documentation about all of them.
1 parent ac7f3dd commit 76f671f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

CefSharp/ISchemeHandler.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ namespace CefSharp
1212
/// Processes a custom scheme-based request asynchronously. The implementing method should call the callback whenever the
1313
/// request is completed.
1414
/// </summary>
15+
/// <param name="request">The request object.</param>
16+
/// <param name="response">The SchemeHandlerResponse object in which the handler is supposed to place the response
17+
/// information.</param>
18+
/// <param name="requestCompletedCallback">A callback which the handler is supposed to call once the processing is
19+
/// complete. The callback may be called on any thread.</param>
1520
/// <returns>true if the request is handled, false otherwise.</returns>
16-
bool ProcessRequestAsync(IRequest^ request, SchemeHandlerResponse^ response, OnRequestCompletedHandler^ callback);
21+
bool ProcessRequestAsync(IRequest^ request, SchemeHandlerResponse^ response, OnRequestCompletedHandler^ requestCompletedCallback);
1722
};
1823
}

0 commit comments

Comments
 (0)