Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/third_party/dotnet/devtools/src/generator/CodeGen/EventInfo.cs
1865 views
namespace OpenQA.Selenium.DevToolsGenerator.CodeGen
{
    /// <summary>
    /// Represents information about a Chrome Debugger Protocol event.
    /// </summary>
    public sealed class EventInfo(string eventName, string fullTypeName)
    {
        public string EventName { get; } = eventName;

        public string FullTypeName { get; } = fullTypeName;
    }
}