ICommandProvider
Represents a provider to get document commands.
using System.Runtime.CompilerServices;
namespace AngleSharp.Browser
{
[System.Runtime.CompilerServices.NullableContext(1)]
public interface ICommandProvider
{
ICommand GetCommand(string name);
}
}