Show / Hide Table of Contents

Interface ICSVListener

This interface defines a complete listener for a parse tree produced by CSVParser.

Namespace: GCore.Antlr.Grammers.Csv
Assembly: Csv.dll
Syntax
public interface ICSVListener : Antlr4.Runtime.Tree.IParseTreeListener

Methods

| Improve this Doc View Source

EnterCsvFile(CSVParser.CsvFileContext)

Enter a parse tree produced by csvFile().

Declaration
void EnterCsvFile(CSVParser.CsvFileContext context)
Parameters
Type Name Description
CSVParser.CsvFileContext context

The parse tree.

| Improve this Doc View Source

EnterField(CSVParser.FieldContext)

Enter a parse tree produced by field().

Declaration
void EnterField(CSVParser.FieldContext context)
Parameters
Type Name Description
CSVParser.FieldContext context

The parse tree.

| Improve this Doc View Source

EnterHdr(CSVParser.HdrContext)

Enter a parse tree produced by hdr().

Declaration
void EnterHdr(CSVParser.HdrContext context)
Parameters
Type Name Description
CSVParser.HdrContext context

The parse tree.

| Improve this Doc View Source

EnterRow(CSVParser.RowContext)

Enter a parse tree produced by row().

Declaration
void EnterRow(CSVParser.RowContext context)
Parameters
Type Name Description
CSVParser.RowContext context

The parse tree.

| Improve this Doc View Source

ExitCsvFile(CSVParser.CsvFileContext)

Exit a parse tree produced by csvFile().

Declaration
void ExitCsvFile(CSVParser.CsvFileContext context)
Parameters
Type Name Description
CSVParser.CsvFileContext context

The parse tree.

| Improve this Doc View Source

ExitField(CSVParser.FieldContext)

Exit a parse tree produced by field().

Declaration
void ExitField(CSVParser.FieldContext context)
Parameters
Type Name Description
CSVParser.FieldContext context

The parse tree.

| Improve this Doc View Source

ExitHdr(CSVParser.HdrContext)

Exit a parse tree produced by hdr().

Declaration
void ExitHdr(CSVParser.HdrContext context)
Parameters
Type Name Description
CSVParser.HdrContext context

The parse tree.

| Improve this Doc View Source

ExitRow(CSVParser.RowContext)

Exit a parse tree produced by row().

Declaration
void ExitRow(CSVParser.RowContext context)
Parameters
Type Name Description
CSVParser.RowContext context

The parse tree.

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX