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
/// <param name="url">The cookie URL. If an empty string is provided, any URL will be matched.</param>
18
22
/// <param name="name">The name of the cookie. If an empty string is provided, any URL will be matched.</param>
19
-
/// <return>Returns -1 if a non-empty invalid URL is specified, or if cookies cannot be accessed;
20
-
/// otherwise, a task that represents the delete operation. The value of the TResult will be the number of cookies that were deleted or -1 if unknown.</return>
23
+
/// <returns>Returns -1 if a non-empty invalid URL is specified, or if cookies cannot be accessed;
24
+
/// otherwise, a task that represents the delete operation. The value of the TResult will be the number of cookies that were deleted or -1 if unknown.</returns>
Copy file name to clipboardExpand all lines: CefSharp/IBrowserHost.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ public interface IBrowserHost : IDisposable
63
63
voidDragTargetDragDrop(MouseEventmouseEvent);
64
64
65
65
/// <summary>
66
-
/// Call this method when the drag operation started by a <see cref="IRenderWebBrowser.StartDragging"/> call has ended either in a drop or by being cancelled.
66
+
/// Call this method when the drag operation started by a <see cref="CefSharp.Internals.IRenderWebBrowser.StartDragging"/> call has ended either in a drop or by being cancelled.
67
67
/// If the web view is both the drag source and the drag target then all DragTarget* methods should be called before DragSource* methods.
68
68
/// This method is only used when window rendering is disabled.
69
69
/// </summary>
@@ -79,7 +79,7 @@ public interface IBrowserHost : IDisposable
79
79
voidDragTargetDragLeave();
80
80
81
81
/// <summary>
82
-
/// Call this method when the drag operation started by a <see cref="IRenderWebBrowser.StartDragging"/> call has completed.
82
+
/// Call this method when the drag operation started by a <see cref="CefSharp.Internals.IRenderWebBrowser.StartDragging"/> call has completed.
83
83
/// This method may be called immediately without first calling DragSourceEndedAt to cancel a drag operation.
84
84
/// If the web view is both the drag source and the drag target then all DragTarget* methods should be called before DragSource* mthods.
85
85
/// This method is only used when window rendering is disabled.
0 commit comments