File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -94,6 +94,16 @@ namespace CefSharp
94
94
}
95
95
}
96
96
97
+ // / <summary>Gets a value that indicates whether CefSharp was shutdown.</summary>
98
+ // / <value>true if CefSharp was shutdown; otherwise, false.</value>
99
+ static property bool IsShutdown
100
+ {
101
+ bool get ()
102
+ {
103
+ return _hasShutdown;
104
+ }
105
+ }
106
+
97
107
// / <summary>Gets a value that indicates the version of CefSharp currently being used.</summary>
98
108
// / <value>The CefSharp version.</value>
99
109
static property String^ CefSharpVersion
Original file line number Diff line number Diff line change @@ -47,6 +47,13 @@ public static bool IsInitialized
47
47
get { return Core . Cef . IsInitialized ; }
48
48
}
49
49
50
+ /// <summary>Gets a value that indicates whether CefSharp was shutdown.</summary>
51
+ /// <value>true if CefSharp was shutdown; otherwise, false.</value>
52
+ public static bool IsShutdown
53
+ {
54
+ get { return Core . Cef . IsShutdown ; }
55
+ }
56
+
50
57
/// <summary>Gets a value that indicates the version of CefSharp currently being used.</summary>
51
58
/// <value>The CefSharp version.</value>
52
59
public static string CefSharpVersion
You can’t perform that action at this time.
0 commit comments