// Copyright © 2021 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. using System; namespace CefSharp.DevTools { /// /// DevToolsErrorEventArgs - Raised when an exception occurs when /// attempting to raise /// public class DevToolsErrorEventArgs : EventArgs { /// /// Event Name /// public string EventName { get; private set; } /// /// Json /// public string Json { get; private set; } /// /// Exception /// public Exception Exception { get; private set; } /// /// DevToolsErrorEventArgs /// /// Event Name /// json /// Exception public DevToolsErrorEventArgs(string eventName, string json, Exception ex) { EventName = eventName; Json = json; Exception = ex; } } }