Skip to content

Commit 1d1b6f2

Browse files
committed
Core - Xml Doc improvements/fixes
1 parent 4a20b19 commit 1d1b6f2

29 files changed

+74
-28
lines changed

CefSharp.Core.Runtime/PostData.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ namespace CefSharp
8888

8989
public:
9090
/// <summary>
91-
/// Default constructor.
91+
/// Initializes a new instance of the PostData class.
9292
/// </summary>
9393
PostData()
9494
{

CefSharp.Core.Runtime/RequestContextSettings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace CefSharp
2828

2929
public:
3030
/// <summary>
31-
/// Default constructor
31+
/// Initializes a new instance of the RequestContextSettings class.
3232
/// </summary>
3333
RequestContextSettings() : _settings(new CefRequestContextSettings())
3434
{

CefSharp/Callback/TaskCompletionCallback.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class TaskCompletionCallback : ICompletionCallback
1818
private bool onComplete; //Only ever accessed on the same CEF thread, so no need for thread safety
1919

2020
/// <summary>
21-
/// Default constructor
21+
/// Initializes a new instance of the TaskCompletionCallback class.
2222
/// </summary>
2323
public TaskCompletionCallback()
2424
{

CefSharp/Callback/TaskDeleteCookiesCallback.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class TaskDeleteCookiesCallback : IDeleteCookiesCallback
2323
private bool onComplete; //Only ever accessed on the same CEF thread, so no need for thread safety
2424

2525
/// <summary>
26-
/// Default constructor
26+
/// Initializes a new instance of the TaskDeleteCookiesCallback class.
2727
/// </summary>
2828
public TaskDeleteCookiesCallback()
2929
{

CefSharp/Callback/TaskRegisterCdmCallback.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class TaskRegisterCdmCallback : IRegisterCdmCallback
1818
private bool onComplete; //Only ever accessed on the same CEF thread, so no need for thread safety
1919

2020
/// <summary>
21-
/// Default constructor
21+
/// Initializes a new instance of the TaskRegisterCdmCallback class.
2222
/// </summary>
2323
public TaskRegisterCdmCallback()
2424
{

CefSharp/Callback/TaskResolveCallback.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class TaskResolveCallback : IResolveCallback
1919
private bool onComplete; //Only ever accessed on the same CEF thread, so no need for thread safety
2020

2121
/// <summary>
22-
/// Default constructor
22+
/// Initializes a new instance of the TaskResolveCallback class.
2323
/// </summary>
2424
public TaskResolveCallback()
2525
{

CefSharp/Callback/TaskSetCookieCallback.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class TaskSetCookieCallback : ISetCookieCallback
1818
private bool onComplete; //Only ever accessed on the same CEF thread, so no need for thread safety
1919

2020
/// <summary>
21-
/// Default constructor
21+
/// Initializes a new instance of the TaskSetCookieCallback class.
2222
/// </summary>
2323
public TaskSetCookieCallback()
2424
{

CefSharp/CefLibraryHandle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ private enum LoadLibraryFlags : uint
3333
}
3434

3535
/// <summary>
36-
/// Default constructor
36+
/// Initializes a new instance of the CefLibraryHandle class.
3737
/// </summary>
3838
/// <param name="path">libcef.dll full path.</param>
3939
public CefLibraryHandle(string path) : base(IntPtr.Zero, true)

CefSharp/DevTools/Headers.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ namespace CefSharp.DevTools.Network
1919
/// Helper methods for dealing with comma separated header values based on https://github.com/dotnet/aspnetcore/blob/52eff90fbcfca39b7eb58baad597df6a99a542b0/src/Http/Http.Abstractions/src/Extensions/HeaderDictionaryExtensions.cs
2020
public class Headers : Dictionary<string, string>
2121
{
22+
/// <summary>
23+
/// Initializes a new instance of the Headers class.
24+
/// </summary>
2225
public Headers() : base(StringComparer.OrdinalIgnoreCase)
2326
{
2427
}

CefSharp/Handler/ContextMenuHandler.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
namespace CefSharp.Handler
66
{
7+
/// <summary>
78
/// Inherit from this class to handle context menu events.
89
/// </summary>
910
public class ContextMenuHandler : IContextMenuHandler

0 commit comments

Comments
 (0)