forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathV8JsEngineFactory.cs
More file actions
55 lines (45 loc) · 1.09 KB
/
V8JsEngineFactory.cs
File metadata and controls
55 lines (45 loc) · 1.09 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using JavaScriptEngineSwitcher.Core;
namespace JavaScriptEngineSwitcher.V8
{
/// <summary>
/// V8 JS engine factory
/// </summary>
public sealed class V8JsEngineFactory : IJsEngineFactory
{
/// <summary>
/// Settings of the V8 JS engine
/// </summary>
private readonly V8Settings _settings;
/// <summary>
/// Constructs an instance of the V8 JS engine factory
/// </summary>
public V8JsEngineFactory()
: this(new V8Settings())
{ }
/// <summary>
/// Constructs an instance of the V8 JS engine factory
/// </summary>
/// <param name="settings">Settings of the V8 JS engine</param>
public V8JsEngineFactory(V8Settings settings)
{
_settings = settings;
}
#region IJsEngineFactory implementation
/// <summary>
/// Gets a name of JS engine
/// </summary>
public string EngineName
{
get { return V8JsEngine.EngineName; }
}
/// <summary>
/// Creates a instance of the V8 JS engine
/// </summary>
/// <returns>Instance of the V8 JS engine</returns>
public IJsEngine CreateEngine()
{
return new V8JsEngine(_settings);
}
#endregion
}
}