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

        public string FullTypeName { get; } = fullTypeName;

        public string FullResponseTypeName { get; } = fullResponseTypeName;
    }
}