forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJsEngineMode.cs
33 lines (30 loc) · 981 Bytes
/
JsEngineMode.cs
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
namespace JavaScriptEngineSwitcher.Msie
{
/// <summary>
/// JavaScript 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.
/// </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.
/// </summary>
ChakraActiveScript,
/// <summary>
/// JsRT version of Chakra JavaScript engine (supports ECMAScript 5).
/// Requires Internet Explorer 11 or higher on the machine.
/// </summary>
ChakraJsRt
}
}