Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 604e957

Browse files
committed
WinForms - Improve xml doc
1 parent 00254b9 commit 604e957

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CefSharp.WinForms/Handler/LifeSpanHandler.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,9 @@ public LifeSpanHandler OnPopupDestroyed(OnPopupDestroyedDelegate onPopupDestroye
234234
/// Create a new instance of the <see cref="LifeSpanHandlerBuilder"/>
235235
/// which can be used to create a WinForms specific <see cref="ILifeSpanHandler"/>
236236
/// 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.
237240
/// </summary>
238241
/// <returns>LifeSpanHandlerBuilder</returns>
239242
public static LifeSpanHandlerBuilder Create()

CefSharp.WinForms/Handler/LifeSpanHandlerBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace CefSharp.WinForms.Handler
66
{
77
/// <summary>
8-
/// Fluent LifeSpanHandler Builder
8+
/// Fluent <see cref="CefSharp.WinForms.Handler.LifeSpanHandler"/> Builder
99
/// </summary>
1010
public class LifeSpanHandlerBuilder
1111
{
@@ -61,7 +61,7 @@ public LifeSpanHandlerBuilder OnPopupDestroyed(OnPopupDestroyedDelegate onPopupD
6161
/// <see cref="ILifeSpanHandler"/> returns true in <see cref="ILifeSpanHandler.DoClose(IWebBrowser, IBrowser)"/>
6262
/// so no WM_CLOSE message is sent, this differs from the default CEF behaviour.
6363
/// </summary>
64-
/// <returns>a <see cref="IDownloadHandler"/> instance</returns>
64+
/// <returns>a <see cref="ILifeSpanHandler"/> instance</returns>
6565
public ILifeSpanHandler Build()
6666
{
6767
return handler;

0 commit comments

Comments
 (0)