C# 클래스 SmtpServer.Protocol.Text.Token

파일 보기 프로젝트 열기: cosullivan/SmtpServer 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
None Token

공개 메소드들

메소드 설명
Equals ( Token other ) : bool

Indicates whether this instance and a specified object are equal.

Equals ( object obj ) : bool

Indicates whether this instance and a specified object are equal.

GetHashCode ( ) : int

Returns the hash code for this instance.

ToString ( ) : string

Returns the string representation of the token.

Token ( TokenKind kind, char ch ) : System

Constructor.

Token ( TokenKind kind, string text ) : System

Constructor.

operator ( ) : bool

Returns a value indicating the equality of the two objects.

비공개 메소드들

메소드 설명
Token ( TokenKind kind ) : System

Constructor.

메소드 상세

Equals() 공개 메소드

Indicates whether this instance and a specified object are equal.
public Equals ( Token other ) : bool
other Token Another object to compare to.
리턴 bool

Equals() 공개 메소드

Indicates whether this instance and a specified object are equal.
public Equals ( object obj ) : bool
obj object Another object to compare to.
리턴 bool

GetHashCode() 공개 메소드

Returns the hash code for this instance.
public GetHashCode ( ) : int
리턴 int

ToString() 공개 메소드

Returns the string representation of the token.
public ToString ( ) : string
리턴 string

Token() 공개 메소드

Constructor.
public Token ( TokenKind kind, char ch ) : System
kind TokenKind The token kind.
ch char The character to create the token from.
리턴 System

Token() 공개 메소드

Constructor.
public Token ( TokenKind kind, string text ) : System
kind TokenKind The token kind.
text string The token text.
리턴 System

operator() 공개 정적인 메소드

Returns a value indicating the equality of the two objects.
public static operator ( ) : bool
리턴 bool

프로퍼티 상세

None 공개적으로 정적으로 프로퍼티

Represents no token.
public static Token,SmtpServer.Protocol.Text None
리턴 Token