forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsEngineMode.cs
More file actions
41 lines (37 loc) · 1.24 KB
/
JsEngineMode.cs
File metadata and controls
41 lines (37 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
namespace JavaScriptEngineSwitcher.Msie
{
/// <summary>
/// MSIE JS engine modes
/// </summary>
public enum JsEngineMode
{
/// <summary>
/// Automatically selects the most modern JavaScript engine from available on the machine
/// </summary>
Auto = 0,
/// <summary>
/// Classic MSIE JavaScript engine (supports ECMAScript 3 with
/// possibility of using the ECMAScript 5 Polyfill and the JSON2 library).
/// Requires Internet Explorer 6 or higher on the machine.
/// Not supported in version for .NET Core.
/// </summary>
Classic,
/// <summary>
/// ActiveScript version of Chakra JavaScript engine (supports ECMAScript 3
/// with possibility of using the ECMAScript 5 Polyfill and the JSON2 library).
/// Requires Internet Explorer 9 or higher on the machine.
/// Not supported in version for .NET Core.
/// </summary>
ChakraActiveScript,
/// <summary>
/// “IE” JsRT version of Chakra JavaScript engine (supports ECMAScript 5).
/// Requires Internet Explorer 11 or Microsoft Edge on the machine.
/// </summary>
ChakraIeJsRt,
/// <summary>
/// “Edge” JsRT version of Chakra JavaScript engine (supports ECMAScript 5).
/// Requires Microsoft Edge on the machine.
/// </summary>
ChakraEdgeJsRt
}
}