We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7c51d0 commit fdea682Copy full SHA for fdea682
CefSharp.Core/RequestContext.cs
@@ -75,6 +75,12 @@ public string CachePath
75
get { return requestContext.CachePath; }
76
}
77
78
+ /// <inheritdoc/>
79
+ public bool IsDisposed
80
+ {
81
+ get { return requestContext.IsDisposed; }
82
+ }
83
+
84
/// <inheritdoc/>
85
public bool IsSame(IRequestContext context)
86
{
CefSharp/IRequestContext.cs
@@ -21,6 +21,10 @@ namespace CefSharp
21
/// </summary>
22
public interface IRequestContext : IDisposable
23
24
+ /// <summary>
25
+ /// Gets a value indicating whether the RequestContext has been disposed of.
26
+ /// </summary>
27
+ bool IsDisposed { get; }
28
/// <summary>
29
/// Returns true if this object is pointing to the same context object.
30
0 commit comments