Show / Hide Table of Contents

    Interface IScanHandler

    An interface that Scanners use to report events in the input stream.

    Namespace: TagSoup
    Assembly: Lucene.Net.Benchmark.dll
    Syntax
    public interface IScanHandler

    Methods

    | Improve this Doc View Source

    Adup(Char[], Int32, Int32)

    Reports an attribute name without a value.

    Declaration
    void Adup(char[] buff, int offset, int length)
    Parameters
    Type Name Description
    System.Char[] buff
    System.Int32 offset
    System.Int32 length
    | Improve this Doc View Source

    Aname(Char[], Int32, Int32)

    Reports an attribute name; a value will follow.

    Declaration
    void Aname(char[] buff, int offset, int length)
    Parameters
    Type Name Description
    System.Char[] buff
    System.Int32 offset
    System.Int32 length
    | Improve this Doc View Source

    Aval(Char[], Int32, Int32)

    Reports an attribute value.

    Declaration
    void Aval(char[] buff, int offset, int length)
    Parameters
    Type Name Description
    System.Char[] buff
    System.Int32 offset
    System.Int32 length
    | Improve this Doc View Source

    CDSect(Char[], Int32, Int32)

    Reports the content of a CDATA section (not a CDATA element)

    Declaration
    void CDSect(char[] buff, int offset, int length)
    Parameters
    Type Name Description
    System.Char[] buff
    System.Int32 offset
    System.Int32 length
    | Improve this Doc View Source

    Cmnt(Char[], Int32, Int32)

    Reports a comment.

    Declaration
    void Cmnt(char[] buff, int offset, int length)
    Parameters
    Type Name Description
    System.Char[] buff
    System.Int32 offset
    System.Int32 length
    | Improve this Doc View Source

    Decl(Char[], Int32, Int32)

    Reports a <!....> declaration - typically a DOCTYPE

    Declaration
    void Decl(char[] buff, int offset, int length)
    Parameters
    Type Name Description
    System.Char[] buff
    System.Int32 offset
    System.Int32 length
    | Improve this Doc View Source

    Entity(Char[], Int32, Int32)

    Reports an entity reference or character reference.

    Declaration
    void Entity(char[] buff, int offset, int length)
    Parameters
    Type Name Description
    System.Char[] buff
    System.Int32 offset
    System.Int32 length
    | Improve this Doc View Source

    EOF(Char[], Int32, Int32)

    Reports EOF.

    Declaration
    void EOF(char[] buff, int offset, int length)
    Parameters
    Type Name Description
    System.Char[] buff
    System.Int32 offset
    System.Int32 length
    | Improve this Doc View Source

    ETag(Char[], Int32, Int32)

    Reports an end-tag.

    Declaration
    void ETag(char[] buff, int offset, int length)
    Parameters
    Type Name Description
    System.Char[] buff
    System.Int32 offset
    System.Int32 length
    | Improve this Doc View Source

    GetEntity()

    Returns the value of the last entity or character reference reported.

    Declaration
    int GetEntity()
    Returns
    Type Description
    System.Int32

    The value of the last entity or character reference reported.

    | Improve this Doc View Source

    GI(Char[], Int32, Int32)

    Reports the general identifier (element type name) of a start-tag.

    Declaration
    void GI(char[] buff, int offset, int length)
    Parameters
    Type Name Description
    System.Char[] buff
    System.Int32 offset
    System.Int32 length
    | Improve this Doc View Source

    PCDATA(Char[], Int32, Int32)

    Reports character content.

    Declaration
    void PCDATA(char[] buff, int offset, int length)
    Parameters
    Type Name Description
    System.Char[] buff
    System.Int32 offset
    System.Int32 length
    | Improve this Doc View Source

    PI(Char[], Int32, Int32)

    Reports the data part of a processing instruction.

    Declaration
    void PI(char[] buff, int offset, int length)
    Parameters
    Type Name Description
    System.Char[] buff
    System.Int32 offset
    System.Int32 length
    | Improve this Doc View Source

    PITarget(Char[], Int32, Int32)

    Reports the target part of a processing instruction.

    Declaration
    void PITarget(char[] buff, int offset, int length)
    Parameters
    Type Name Description
    System.Char[] buff
    System.Int32 offset
    System.Int32 length
    | Improve this Doc View Source

    STagC(Char[], Int32, Int32)

    Reports the close of a start-tag.

    Declaration
    void STagC(char[] buff, int offset, int length)
    Parameters
    Type Name Description
    System.Char[] buff
    System.Int32 offset
    System.Int32 length
    | Improve this Doc View Source

    STagE(Char[], Int32, Int32)

    Reports the close of an empty-tag.

    Declaration
    void STagE(char[] buff, int offset, int length)
    Parameters
    Type Name Description
    System.Char[] buff
    System.Int32 offset
    System.Int32 length
    • Improve this Doc
    • View Source
    Back to top Copyright © 2020 Licensed to the Apache Software Foundation (ASF)