-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathDevToolsEventArgs.cs
More file actions
28 lines (25 loc) · 819 Bytes
/
Copy pathDevToolsEventArgs.cs
File metadata and controls
28 lines (25 loc) · 819 Bytes
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
// Copyright © 2020 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp.DevTools
{
/// <summary>
/// DevTools Event EventAargs
/// </summary>
public class DevToolsEventArgs : DevToolsDomainEventArgsBase
{
/// <summary>
/// Event Name
/// </summary>
public string EventName { get; private set; }
/// <summary>
/// Event paramaters as Json string
/// </summary>
public string ParametersAsJsonString { get; private set; }
public DevToolsEventArgs(string eventName, string paramsAsJsonString)
{
EventName = eventName;
ParametersAsJsonString = paramsAsJsonString;
}
}
}