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
9494 }
9595 }
9696
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+
97107 // / <summary>Gets a value that indicates the version of CefSharp currently being used.</summary>
98108 // / <value>The CefSharp version.</value>
99109 static property String^ CefSharpVersion
Original file line number Diff line number Diff line change @@ -47,6 +47,13 @@ public static bool IsInitialized
4747 get { return Core . Cef . IsInitialized ; }
4848 }
4949
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+
5057 /// <summary>Gets a value that indicates the version of CefSharp currently being used.</summary>
5158 /// <value>The CefSharp version.</value>
5259 public static string CefSharpVersion
You can’t perform that action at this time.
0 commit comments