forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMsieJsEngineFactory.cs
More file actions
55 lines (45 loc) · 1.12 KB
/
MsieJsEngineFactory.cs
File metadata and controls
55 lines (45 loc) · 1.12 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.Msie
{
/// <summary>
/// MSIE JS engine factory
/// </summary>
public sealed class MsieJsEngineFactory : IJsEngineFactory
{
/// <summary>
/// Settings of the MSIE JS engine
/// </summary>
private readonly MsieSettings _settings;
/// <summary>
/// Constructs an instance of the MSIE JS engine factory
/// </summary>
public MsieJsEngineFactory()
: this(new MsieSettings())
{ }
/// <summary>
/// Constructs an instance of the MSIE JS engine factory
/// </summary>
/// <param name="settings">Settings of the MSIE JS engine</param>
public MsieJsEngineFactory(MsieSettings settings)
{
_settings = settings;
}
#region IJsEngineFactory implementation
/// <summary>
/// Gets a name of JS engine
/// </summary>
public string EngineName
{
get { return MsieJsEngine.EngineName; }
}
/// <summary>
/// Creates a instance of the MSIE JS engine
/// </summary>
/// <returns>Instance of the MSIE JS engine</returns>
public IJsEngine CreateEngine()
{
return new MsieJsEngine(_settings);
}
#endregion
}
}