14 lines
269 B
C#
14 lines
269 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Text.RegularExpressions;
|
||
|
|
using System.Text;
|
||
|
|
|
||
|
|
namespace Rokojori
|
||
|
|
{
|
||
|
|
public interface HtmlElementSelector
|
||
|
|
{
|
||
|
|
bool Selects( HtmlElementNode elementNode );
|
||
|
|
|
||
|
|
string selector { get; }
|
||
|
|
}
|
||
|
|
}
|