forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsEngineFactoryCollectionExtensions.cs
More file actions
79 lines (68 loc) · 2.3 KB
/
JsEngineFactoryCollectionExtensions.cs
File metadata and controls
79 lines (68 loc) · 2.3 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
using System;
using JavaScriptEngineSwitcher.Core;
namespace JavaScriptEngineSwitcher.V8
{
/// <summary>
/// JS engine factory collection extensions
/// </summary>
public static class JsEngineFactoryCollectionExtensions
{
/// <summary>
/// Adds a instance of <see cref="V8JsEngineFactory"/> to
/// the specified <see cref="JsEngineFactoryCollection" />
/// </summary>
/// <param name="source">Instance of <see cref="JsEngineFactoryCollection" /></param>
/// <returns>Instance of <see cref="JsEngineFactoryCollection" /></returns>
public static JsEngineFactoryCollection AddV8(this JsEngineFactoryCollection source)
{
if (source == null)
{
throw new ArgumentNullException(nameof(source));
}
return source.AddV8(new V8Settings());
}
/// <summary>
/// Adds a instance of <see cref="V8JsEngineFactory"/> to
/// the specified <see cref="JsEngineFactoryCollection" />
/// </summary>
/// <param name="source">Instance of <see cref="JsEngineFactoryCollection" /></param>
/// <param name="configure">The delegate to configure the provided <see cref="V8Settings"/></param>
/// <returns>Instance of <see cref="JsEngineFactoryCollection" /></returns>
public static JsEngineFactoryCollection AddV8(this JsEngineFactoryCollection source,
Action<V8Settings> configure)
{
if (source == null)
{
throw new ArgumentNullException(nameof(source));
}
if (configure == null)
{
throw new ArgumentNullException(nameof(configure));
}
var settings = new V8Settings();
configure(settings);
return source.AddV8(settings);
}
/// <summary>
/// Adds a instance of <see cref="V8JsEngineFactory"/> to
/// the specified <see cref="JsEngineFactoryCollection" />
/// </summary>
/// <param name="source">Instance of <see cref="JsEngineFactoryCollection" /></param>
/// <param name="settings">Settings of the V8 JS engine</param>
/// <returns>Instance of <see cref="JsEngineFactoryCollection" /></returns>
public static JsEngineFactoryCollection AddV8(this JsEngineFactoryCollection source,
V8Settings settings)
{
if (source == null)
{
throw new ArgumentNullException(nameof(source));
}
if (settings == null)
{
throw new ArgumentNullException(nameof(settings));
}
source.Add(new V8JsEngineFactory(settings));
return source;
}
}
}