Table of Contents

Interface IAttributeSelectorFactory

Namespace
AngleSharp.Css
Assembly
AngleSharp.dll

Represents a factory for attribute selectors.

public interface IAttributeSelectorFactory
Extension Methods

Methods

Create(string, string, string, string?, bool)

Creates a new attribute selector from the given arguments.

ISelector Create(string combinator, string name, string value, string? prefix, bool insensitive)

Parameters

combinator string

The used combinator.

name string

The name of the attribute.

value string

The provided value.

prefix string

The prefix, if any.

insensitive bool

Should be evaluated insensitive.

Returns

ISelector

The created selector, if possible.