@@ -12,18 +12,18 @@ namespace {{rootNamespace}}.{{domain.Name}}
12
12
/// </summary >
13
13
public class {{ dehumanize domain.Name }} Adapter
14
14
{
15
- private readonly IDevToolsSession m_session;
16
15
private readonly string m_domainName = "{{ dehumanize domain.Name }} ";
17
16
private Dictionary<string , DevToolsEventData> m_eventMap = new Dictionary<string , DevToolsEventData>();
18
17
19
18
/// <summary >
20
19
/// Initializes a new instance of the {{ dehumanize domain.Name }} Adapter class.
21
20
/// </summary >
22
21
/// <param name =" session" >The IDevToolsSession to be used with this adapter.</param >
22
+ /// <exception cref =" ArgumentNullException" >If <paramref name =" session" /> is <see langword =" null" />.</exception >
23
23
public {{ dehumanize domain.Name }} Adapter(IDevToolsSession session)
24
24
{
25
- m_session = session ?? throw new ArgumentNullException(nameof(session));
26
- m_session .DevToolsEventReceived += OnDevToolsEventReceived;
25
+ Session = session ?? throw new ArgumentNullException(nameof(session));
26
+ Session .DevToolsEventReceived += OnDevToolsEventReceived;
27
27
{{ #each domain.Events }}
28
28
m_eventMap["{{ Name }} "] = new DevToolsEventData(typeof({{ dehumanize Name }} EventArgs), On{{ dehumanize Name }} );
29
29
{{ /each }}
@@ -32,16 +32,14 @@ namespace {{rootNamespace}}.{{domain.Name}}
32
32
/// <summary >
33
33
/// Gets the DevToolsSession associated with the adapter.
34
34
/// </summary >
35
- public IDevToolsSession Session
36
- {
37
- get { return m_session; }
38
- }
35
+ public IDevToolsSession Session { get; }
39
36
40
37
{{ #each domain.Events }}
41
38
/// <summary >
42
39
/// {{ xml-code-comment Description 2 }}
43
40
/// </summary >
44
41
public event EventHandler<{{dehumanize Name}}EventArgs> {{ dehumanize Name }} ;
42
+
45
43
{{ /each }}
46
44
47
45
{{ #each domain.Commands }}
@@ -50,8 +48,9 @@ namespace {{rootNamespace}}.{{domain.Name}}
50
48
/// </summary >
51
49
public Task<{{dehumanize Name}}CommandResponse> {{ dehumanize Name }} ({{ dehumanize Name }} CommandSettings command{{ #if NoParameters }} = null{{ /if }} , CancellationToken cancellationToken = default(CancellationToken), int? millisecondsTimeout = null, bool throwExceptionIfResponseNotReceived = true)
52
50
{
53
- return m_session .SendCommand<{{dehumanize Name}}CommandSettings, {{ dehumanize Name }} CommandResponse>(command{{ #if NoParameters }} ?? new {{ dehumanize Name }} CommandSettings(){{ /if }} , cancellationToken, millisecondsTimeout, throwExceptionIfResponseNotReceived);
51
+ return Session .SendCommand<{{dehumanize Name}}CommandSettings, {{ dehumanize Name }} CommandResponse>(command{{ #if NoParameters }} ?? new {{ dehumanize Name }} CommandSettings(){{ /if }} , cancellationToken, millisecondsTimeout, throwExceptionIfResponseNotReceived);
54
52
}
53
+
55
54
{{ /each }}
56
55
57
56
private void OnDevToolsEventReceived(object sender, DevToolsEventReceivedEventArgs e)
@@ -70,12 +69,12 @@ namespace {{rootNamespace}}.{{domain.Name}}
70
69
{{ #each domain.Events }}
71
70
private void On{{ dehumanize Name }} (object rawEventArgs)
72
71
{
73
- {{ dehumanize Name }} EventArgs e = rawEventArgs as {{ dehumanize Name }} EventArgs;
74
- if (e != null && {{ dehumanize Name }} != null)
72
+ if (rawEventArgs is {{ dehumanize Name }} EventArgs e)
75
73
{
76
- {{ dehumanize Name }} (this, e);
74
+ {{ dehumanize Name }} ?.Invoke (this, e);
77
75
}
78
76
}
77
+
79
78
{{ /each }}
80
79
}
81
80
}
0 commit comments