C# Class SmtpServer.Protocol.Text.StringTokenReader

Inheritance: TokenReader
Exibir arquivo Open project: cosullivan/SmtpServer

Public Methods

Method Description
NextToken ( ) : Token

Reads the next token.

StringTokenReader ( string input ) : System

Constructor.

Private Methods

Method Description
IsEof ( int index ) : bool

Returns a value indicating whether or not the given index is currently at the end of the input string.

NumberToken ( ) : Token

Returns a Number (or alpha-numeric) token from the current position.

TextToken ( ) : Token

Returns a Text token from the current position.

Method Details

NextToken() public method

Reads the next token.
public NextToken ( ) : Token
return Token

StringTokenReader() public method

Constructor.
public StringTokenReader ( string input ) : System
input string The input string.
return System