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
78 lines (67 loc) · 2.31 KB
/
JsEngineFactoryCollectionExtensions.cs
File metadata and controls
78 lines (67 loc) · 2.31 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
using System;
using JavaScriptEngineSwitcher.Core;
namespace JavaScriptEngineSwitcher.NiL
{
/// <summary>
/// JS engine factory collection extensions
/// </summary>
public static class JsEngineFactoryCollectionExtensions
{
/// <summary>
/// Adds a instance of <see cref="NiLJsEngineFactory"/> 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 AddNiL(this JsEngineFactoryCollection source)
{
if (source is null)
{
throw new ArgumentNullException(nameof(source));
}
return source.AddNiL(new NiLSettings());
}
/// <summary>
/// Adds a instance of <see cref="NiLJsEngineFactory"/> 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="NiLSettings"/></param>
/// <returns>Instance of <see cref="JsEngineFactoryCollection"/></returns>
public static JsEngineFactoryCollection AddNiL(this JsEngineFactoryCollection source,
Action<NiLSettings> configure)
{
if (source is null)
{
throw new ArgumentNullException(nameof(source));
}
if (configure is null)
{
throw new ArgumentNullException(nameof(configure));
}
var settings = new NiLSettings();
configure(settings);
return source.AddNiL(settings);
}
/// <summary>
/// Adds a instance of <see cref="NiLJsEngineFactory"/> to
/// the specified <see cref="JsEngineFactoryCollection"/>
/// </summary>
/// <param name="source">Instance of <see cref="JsEngineFactoryCollection"/></param>
/// <param name="settings">Settings of the NiL JS engine</param>
/// <returns>Instance of <see cref="JsEngineFactoryCollection"/></returns>
public static JsEngineFactoryCollection AddNiL(this JsEngineFactoryCollection source, NiLSettings settings)
{
if (source is null)
{
throw new ArgumentNullException(nameof(source));
}
if (settings is null)
{
throw new ArgumentNullException(nameof(settings));
}
source.Add(new NiLJsEngineFactory(settings));
return source;
}
}
}