forked from Taritsyn/MsieJavaScriptEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsEngineMode.cs
More file actions
40 lines (36 loc) · 1.11 KB
/
JsEngineMode.cs
File metadata and controls
40 lines (36 loc) · 1.11 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
namespace MsieJavaScriptEngine
{
/// <summary>
/// JS engine modes
/// </summary>
public enum JsEngineMode
{
/// <summary>
/// Automatically selects the most modern JS engine from available on the machine
/// </summary>
Auto = 0,
/// <summary>
/// Classic MSIE JS 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 JS engine (supports ECMAScript 5).
/// Requires Internet Explorer 9 or higher on the machine.
/// Not supported in version for .NET Core.
/// </summary>
ChakraActiveScript,
/// <summary>
/// “IE” JsRT version of Chakra JS engine (supports ECMAScript 5).
/// Requires Internet Explorer 11 or Microsoft Edge on the machine.
/// </summary>
ChakraIeJsRt,
/// <summary>
/// “Edge” JsRT version of Chakra JS engine (supports ECMAScript 5).
/// Requires Microsoft Edge on the machine.
/// </summary>
ChakraEdgeJsRt
}
}