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/IRequestContext.cs
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -97,7 +97,7 @@ public interface IRequestContext : IDisposable
97
97
/// <param name="name">name of preference</param>
98
98
/// <returns>bool if the preference exists</returns>
99
99
/// <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
100
-
/// Cef.OnContextInitialized and ChromiumWebBrowser.IsBrowserInitializedChanged are both
100
+
/// <see cref="IBrowserProcessHandler.OnContextInitialized"/> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
101
101
/// executed on the CEF UI thread, so can be called directly.
102
102
/// When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
103
103
/// application thread will be the CEF UI thread.</remarks>
@@ -113,7 +113,7 @@ public interface IRequestContext : IDisposable
113
113
/// <param name="name">preference name</param>
114
114
/// <returns>Returns the value for the preference with the specified name</returns>
115
115
/// <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
116
-
/// Cef.OnContextInitialized and ChromiumWebBrowser.IsBrowserInitializedChanged are both
116
+
/// <see cref="IBrowserProcessHandler.OnContextInitialized"/> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
117
117
/// executed on the CEF UI thread, so can be called directly.
118
118
/// When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
119
119
/// application thread will be the CEF UI thread.</remarks>
@@ -140,7 +140,7 @@ public interface IRequestContext : IDisposable
140
140
/// <returns>Returns true if the preference with the specified name can be modified
141
141
/// using SetPreference</returns>
142
142
/// <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
143
-
/// Cef.OnContextInitialized and ChromiumWebBrowser.IsBrowserInitializedChanged are both
143
+
/// <see cref="IBrowserProcessHandler.OnContextInitialized"/> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
144
144
/// executed on the CEF UI thread, so can be called directly.
145
145
/// When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
146
146
/// application thread will be the CEF UI thread.</remarks>
@@ -157,8 +157,8 @@ public interface IRequestContext : IDisposable
157
157
/// <param name="value">preference value</param>
158
158
/// <param name="error">out error</param>
159
159
/// <returns>Returns true if the value is set successfully and false otherwise.</returns>
160
-
/// /// <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
161
-
/// Cef.OnContextInitialized and ChromiumWebBrowser.IsBrowserInitializedChanged are both
160
+
/// <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
161
+
/// <see cref="IBrowserProcessHandler.OnContextInitialized"/> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
162
162
/// executed on the CEF UI thread, so can be called directly.
163
163
/// When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
164
164
/// application thread will be the CEF UI thread.</remarks>
@@ -218,7 +218,7 @@ public interface IRequestContext : IDisposable
218
218
219
219
/// <summary>
220
220
/// Retrieve the list of all extensions that this context has access to (see HasExtension).
221
-
/// <see cref="extensionIds"/> will be populated with the list of extension ID values.
221
+
/// <paramref name="extensionIds"/> will be populated with the list of extension ID values.
222
222
/// This method must be called on the CEF UI thread.
223
223
/// </summary>
224
224
/// <param name="extensionIds">output a list of extensions Ids</param>
@@ -260,7 +260,7 @@ public interface IRequestContext : IDisposable
260
260
/// - Can access chrome.* JavaScript APIs if allowed by the manifest. Visit chrome://extensions-support for the list of extension APIs currently supported by CEF.
261
261
/// - Main frame navigation to non-extension content is blocked.
262
262
/// - Pinch-zooming is disabled.
263
-
/// - <see cref="IBrowserHost.GetExtension"/> returns the hosted extension.
263
+
/// - <see cref="IBrowserHost.Extension"/> returns the hosted extension.
264
264
/// - CefBrowserHost::IsBackgroundHost returns true for background hosts.
265
265
///
266
266
/// See https://developer.chrome.com/extensions for extension implementation and usage documentation.
0 commit comments