Skip to content

Commit 9b41165

Browse files
committed
Core - Fix some xml doc mistakes
1 parent e5e663e commit 9b41165

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

CefSharp/Callback/IMediaAccessCallback.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public interface IMediaAccessCallback : IDisposable
1616
/// Call to allow or deny media access. If this callback was initiated in
1717
/// response to a getUserMedia (indicated by
1818
/// DeviceAudioCapture and/or DeviceVideoCapture being set) then
19-
/// <paramref name="allowedPermissions"/> must match <paramref name="requestedPermissions"/> passed to
19+
/// <paramref name="allowedPermissions"/> must match requestedPermissions param passed to
2020
/// <see cref="IPermissionHandler.OnRequestMediaAccessPermission"/>
2121
/// </summary>
2222
/// <param name="allowedPermissions">Allowed Permissions</param>

CefSharp/Handler/FindHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace CefSharp.Handler
1212
/// </summary>
1313
public class FindHandler : IFindHandler
1414
{
15-
/// </<inheritdoc/>
15+
/// <inheritdoc/>
1616
void IFindHandler.OnFindResult(IWebBrowser chromiumWebBrowser, IBrowser browser, int identifier, int count, Rect selectionRect, int activeMatchOrdinal, bool finalUpdate)
1717
{
1818
OnFindResult(chromiumWebBrowser, browser, identifier, count, selectionRect, activeMatchOrdinal, finalUpdate);

CefSharp/IBrowserHost.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ public interface IBrowserHost : IDisposable
5858
bool HasDevTools { get; }
5959

6060
/// <summary>
61-
/// Send a method call message over the DevTools protocol. <paramref name="message"/> must be a
61+
/// Send a method call message over the DevTools protocol. <paramref name="messageAsJson"/> must be a
6262
/// UTF8-encoded JSON dictionary that contains "id" (int), "method" (string)
6363
/// and "params" (dictionary, optional) values. See the DevTools protocol
6464
/// documentation at https://chromedevtools.github.io/devtools-protocol/ for
6565
/// details of supported methods and the expected "params" dictionary contents.
66-
/// <paramref name="message"/> will be copied if necessary. This method will return true if
66+
/// <paramref name="messageAsJson"/> will be copied if necessary. This method will return true if
6767
/// called on the CEF UI thread and the message was successfully submitted for
6868
/// validation, otherwise false. Validation will be applied asynchronously and
6969
/// any messages that fail due to formatting errors or missing parameters may
@@ -115,7 +115,7 @@ public interface IBrowserHost : IDisposable
115115
/// Execute a method call over the DevTools protocol. This is a more structured
116116
/// version of SendDevToolsMessage.
117117
/// See the DevTools protocol documentation at https://chromedevtools.github.io/devtools-protocol/ for details
118-
/// of supported methods and the expected <paramref name="paramsAsJson"/> dictionary contents.
118+
/// of supported methods and the expected <paramref name="parameters"/> dictionary contents.
119119
/// See the SendDevToolsMessage documentation for additional usage information.
120120
/// </summary>
121121
/// <param name="messageId">is an incremental number that uniquely identifies the message (pass 0 to have the next number assigned

CefSharp/IChromiumWebBrowserBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public interface IChromiumWebBrowserBase : IDisposable
7676

7777
/// <summary>
7878
/// Loads the specified <paramref name="url"/> in the Main Frame.
79-
/// Same as calling <see cref="Load(string)"/>
79+
/// Same as calling <see cref="IWebBrowser.Load(string)"/>
8080
/// </summary>
8181
/// <param name="url">The URL to be loaded.</param>
8282
/// <remarks>

CefSharp/IWebBrowser.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ public interface IWebBrowser : IChromiumWebBrowserBase
2020

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

0 commit comments

Comments
 (0)