Skip to content

Commit

Permalink
Core - Fix some xml doc mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
amaitland committed Feb 27, 2023
1 parent e5e663e commit 9b41165
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CefSharp/Callback/IMediaAccessCallback.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public interface IMediaAccessCallback : IDisposable
/// Call to allow or deny media access. If this callback was initiated in
/// response to a getUserMedia (indicated by
/// DeviceAudioCapture and/or DeviceVideoCapture being set) then
/// <paramref name="allowedPermissions"/> must match <paramref name="requestedPermissions"/> passed to
/// <paramref name="allowedPermissions"/> must match requestedPermissions param passed to
/// <see cref="IPermissionHandler.OnRequestMediaAccessPermission"/>
/// </summary>
/// <param name="allowedPermissions">Allowed Permissions</param>
Expand Down
2 changes: 1 addition & 1 deletion CefSharp/Handler/FindHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace CefSharp.Handler
/// </summary>
public class FindHandler : IFindHandler
{
/// </<inheritdoc/>
/// <inheritdoc/>
void IFindHandler.OnFindResult(IWebBrowser chromiumWebBrowser, IBrowser browser, int identifier, int count, Rect selectionRect, int activeMatchOrdinal, bool finalUpdate)
{
OnFindResult(chromiumWebBrowser, browser, identifier, count, selectionRect, activeMatchOrdinal, finalUpdate);
Expand Down
6 changes: 3 additions & 3 deletions CefSharp/IBrowserHost.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ public interface IBrowserHost : IDisposable
bool HasDevTools { get; }

/// <summary>
/// Send a method call message over the DevTools protocol. <paramref name="message"/> must be a
/// Send a method call message over the DevTools protocol. <paramref name="messageAsJson"/> must be a
/// UTF8-encoded JSON dictionary that contains "id" (int), "method" (string)
/// and "params" (dictionary, optional) values. See the DevTools protocol
/// documentation at https://chromedevtools.github.io/devtools-protocol/ for
/// details of supported methods and the expected "params" dictionary contents.
/// <paramref name="message"/> will be copied if necessary. This method will return true if
/// <paramref name="messageAsJson"/> will be copied if necessary. This method will return true if
/// called on the CEF UI thread and the message was successfully submitted for
/// validation, otherwise false. Validation will be applied asynchronously and
/// any messages that fail due to formatting errors or missing parameters may
Expand Down Expand Up @@ -115,7 +115,7 @@ public interface IBrowserHost : IDisposable
/// Execute a method call over the DevTools protocol. This is a more structured
/// version of SendDevToolsMessage.
/// See the DevTools protocol documentation at https://chromedevtools.github.io/devtools-protocol/ for details
/// of supported methods and the expected <paramref name="paramsAsJson"/> dictionary contents.
/// of supported methods and the expected <paramref name="parameters"/> dictionary contents.
/// See the SendDevToolsMessage documentation for additional usage information.
/// </summary>
/// <param name="messageId">is an incremental number that uniquely identifies the message (pass 0 to have the next number assigned
Expand Down
2 changes: 1 addition & 1 deletion CefSharp/IChromiumWebBrowserBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public interface IChromiumWebBrowserBase : IDisposable

/// <summary>
/// Loads the specified <paramref name="url"/> in the Main Frame.
/// Same as calling <see cref="Load(string)"/>
/// Same as calling <see cref="IWebBrowser.Load(string)"/>
/// </summary>
/// <param name="url">The URL to be loaded.</param>
/// <remarks>
Expand Down
4 changes: 2 additions & 2 deletions CefSharp/IWebBrowser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public interface IWebBrowser : IChromiumWebBrowserBase

/// <summary>
/// Loads the specified <paramref name="url"/> in the Main Frame.
/// If <see cref="IsDisposed"/> is true then the method call will be ignored.
/// Same as calling <see cref="LoadUrl(string)"/>
/// If <see cref="IChromiumWebBrowserBase.IsDisposed"/> is true then the method call will be ignored.
/// Same as calling <see cref="IChromiumWebBrowserBase.LoadUrl(string)"/>
/// </summary>
/// <param name="url">The URL to be loaded.</param>
void Load(string url);
Expand Down

0 comments on commit 9b41165

Please sign in to comment.