C# Class Parser.SimpleTwoWordTag

The base class for such tags as Order By, Group By etc.
Inheritance: SimpleOneWordTag
Datei anzeigen Open project: totpero/SqlParser Class Usage Examples

Public Methods

Method Description
WriteStart ( StringBuilder output ) : void

Writes the start of the tag.

Protected Methods

Method Description
MatchStart ( string sql, int position ) : int

Checks whether there is the tag at the specified position in the specified sql.

Private Methods

Method Description
MatchStart ( string firstWord, string secondWord, string sql, int position ) : int

Checks whether there is the tag at the specified position in the specified sql.

Method Details

MatchStart() protected method

Checks whether there is the tag at the specified position in the specified sql.
protected MatchStart ( string sql, int position ) : int
sql string
position int
return int

WriteStart() public method

Writes the start of the tag.
public WriteStart ( StringBuilder output ) : void
output StringBuilder
return void