IAttributeSelectorFactory
Represents a factory for attribute selectors.
using AngleSharp.Dom.Css;
namespace AngleSharp.Services
{
public interface IAttributeSelectorFactory
{
ISelector Create(string combinator, string name, string value, string prefix);
}
}