Interface IScanner
An interface allowing Parser to invoke scanners.
Namespace: TagSoup
Assembly: Lucene.Net.Benchmark.dll
Syntax
public interface IScanner
  Methods
| Improve this Doc View SourceResetDocumentLocator(String, String)
Reset the embedded locator.
Declaration
void ResetDocumentLocator(string publicid, string systemid)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | publicid | The publicid of the source  | 
      
| System.String | systemid | The systemid of the source  | 
      
Scan(TextReader, IScanHandler)
Invoke a scanner.
Declaration
void Scan(TextReader br, IScanHandler handler)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.IO.TextReader | br | A source of characters to scan  | 
      
| IScanHandler | handler | A IScanHandler to report events to  | 
      
StartCDATA()
Signal to the scanner to start CDATA content mode.
Declaration
void StartCDATA()