Interface IScanHandler
An interface that Scanners use to report events in the input stream.
Assembly: Lucene.Net.Benchmark.dll
Syntax
public interface IScanHandler
Methods
Name | Description |
---|---|
Adup(Char[], Int32, Int32) | Reports an attribute name without a value. |
Aname(Char[], Int32, Int32) | Reports an attribute name; a value will follow. |
Aval(Char[], Int32, Int32) | Reports an attribute value. |
CDSect(Char[], Int32, Int32) | Reports the content of a CDATA section (not a CDATA element) |
Cmnt(Char[], Int32, Int32) | Reports a comment. |
Decl(Char[], Int32, Int32) | Reports a <!....> declaration - typically a DOCTYPE |
Entity(Char[], Int32, Int32) | Reports an entity reference or character reference. |
EOF(Char[], Int32, Int32) | Reports EOF. |
ETag(Char[], Int32, Int32) | Reports an end-tag. |
GetEntity() | Returns the value of the last entity or character reference reported. |
GI(Char[], Int32, Int32) | Reports the general identifier (element type name) of a start-tag. |
PCDATA(Char[], Int32, Int32) | Reports character content. |
PI(Char[], Int32, Int32) | Reports the data part of a processing instruction. |
PITarget(Char[], Int32, Int32) | Reports the target part of a processing instruction. |
STagC(Char[], Int32, Int32) | Reports the close of a start-tag. |
STagE(Char[], Int32, Int32) | Reports the close of an empty-tag. |