File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
CefSharp.WinForms/Handler Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -234,6 +234,9 @@ public LifeSpanHandler OnPopupDestroyed(OnPopupDestroyedDelegate onPopupDestroye
234
234
/// Create a new instance of the <see cref="LifeSpanHandlerBuilder"/>
235
235
/// which can be used to create a WinForms specific <see cref="ILifeSpanHandler"/>
236
236
/// implementation that simplifies the process of hosting a Popup as a Control/Tab.
237
+ /// In scnarios where you also need to implement <see cref="ILoadHandler"/> then instead
238
+ /// of implementing directly you will need to inherit from <see cref="CefSharp.WinForms.Handler.LoadHandler"/>.
239
+ /// As it provides base functionality required to make <see cref="ChromiumHostControl"/> events work correctly.
237
240
/// </summary>
238
241
/// <returns>LifeSpanHandlerBuilder</returns>
239
242
public static LifeSpanHandlerBuilder Create ( )
Original file line number Diff line number Diff line change 5
5
namespace CefSharp . WinForms . Handler
6
6
{
7
7
/// <summary>
8
- /// Fluent LifeSpanHandler Builder
8
+ /// Fluent <see cref="CefSharp.WinForms.Handler. LifeSpanHandler"/> Builder
9
9
/// </summary>
10
10
public class LifeSpanHandlerBuilder
11
11
{
@@ -61,7 +61,7 @@ public LifeSpanHandlerBuilder OnPopupDestroyed(OnPopupDestroyedDelegate onPopupD
61
61
/// <see cref="ILifeSpanHandler"/> returns true in <see cref="ILifeSpanHandler.DoClose(IWebBrowser, IBrowser)"/>
62
62
/// so no WM_CLOSE message is sent, this differs from the default CEF behaviour.
63
63
/// </summary>
64
- /// <returns>a <see cref="IDownloadHandler "/> instance</returns>
64
+ /// <returns>a <see cref="ILifeSpanHandler "/> instance</returns>
65
65
public ILifeSpanHandler Build ( )
66
66
{
67
67
return handler ;
You can’t perform that action at this time.
0 commit comments