Skip to content

Commit d9e5da9

Browse files
committed
fix docu
1 parent 4d4ff02 commit d9e5da9

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CefSharp.OutOfProcess.Core/OutOfProcessHost.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ public string ChromiumVersion
8484
/// </summary>
8585
/// <param name="browser">The <see cref="IChromiumWebBrowserInternal"/> that will host the browser</param>
8686
/// <param name="handle">handle used to host the control</param>
87-
/// <param name="url"></param>
88-
/// <param name="requestContextPreferences">request context preference.</param>
87+
/// <param name="url"></param>
8988
/// <param name="id">id.</param>
89+
/// <param name="requestContextPreferences">request context preference.</param>
9090
/// <returns>if created.</returns>
9191
public bool CreateBrowser(IChromiumWebBrowserInternal browser, IntPtr handle, string url, out int id, IDictionary<string, object> requestContextPreferences = null)
9292
{

CefSharp.OutOfProcess.Wpf.HwndHost/ChromiumWebBrowser.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,12 @@ public ChromiumWebBrowser(OutOfProcessHost host, string initialAddress = null)
320320
UseLayoutRounding = true;
321321
}
322322

323+
/// <summary>
324+
/// Initializes a new instance of the <see cref="ChromiumWebBrowser"/> instance.
325+
/// </summary>
326+
/// <param name="host">Out of process host</param>
327+
/// <param name="initialAddress">address to load initially</param>
328+
/// <param name="requestContextPreferences">requestContextPreferences to set</param>
323329
public ChromiumWebBrowser(OutOfProcessHost host, string initialAddress = null, IDictionary<string, object> requestContextPreferences = null)
324330
: this(host, initialAddress)
325331
{

0 commit comments

Comments
 (0)