C# 클래스 IrcShark.Chatting.Irc.UserInfo

Holds host informations about a user.
상속: IIrcObject
파일 보기 프로젝트 열기: hapm/IrcShark 1 사용 예제들

공개 메소드들

메소드 설명
Equals ( object obj ) : bool

Compare this UserInfo with other objects.

GetHashCode ( ) : int

Gets the hashcode of this UserInfo.

ToString ( ) : string

Gives back the raw host this UserInfo was created from.

UserInfo ( IrcClient client, string host ) : System

Initializes a new instance of the UserInfo class based on the host.

UserInfo ( IrcLine baseLine ) : System

Initializes a new instance of the UserInfo class based on the given IrcLine.

UserInfo ( UserInfo source ) : System

Initializes a new instance of the UserInfo class, based on an existing UserInfo.

UserInfo ( string nickName, string ident, string host, IrcClient client ) : System

Initializes a new instance of the UserInfo class with the given values.

메소드 상세

Equals() 공개 메소드

Compare this UserInfo with other objects.
public Equals ( object obj ) : bool
obj object /// The object to compare with. ///
리턴 bool

GetHashCode() 공개 메소드

Gets the hashcode of this UserInfo.
public GetHashCode ( ) : int
리턴 int

ToString() 공개 메소드

Gives back the raw host this UserInfo was created from.
public ToString ( ) : string
리턴 string

UserInfo() 공개 메소드

Initializes a new instance of the UserInfo class based on the host.
public UserInfo ( IrcClient client, string host ) : System
client IrcClient /// The this UserInfo belongs to. ///
host string /// A host as described in rfc 1459 as a . ///
리턴 System

UserInfo() 공개 메소드

Initializes a new instance of the UserInfo class based on the given IrcLine.
public UserInfo ( IrcLine baseLine ) : System
baseLine IrcLine /// The this UserInfo was build from. ///
리턴 System

UserInfo() 공개 메소드

Initializes a new instance of the UserInfo class, based on an existing UserInfo.
public UserInfo ( UserInfo source ) : System
source UserInfo The UserInfo instance to copy from.
리턴 System

UserInfo() 공개 메소드

Initializes a new instance of the UserInfo class with the given values.
public UserInfo ( string nickName, string ident, string host, IrcClient client ) : System
nickName string The nickname of the user.
ident string The ident of the user.
host string The user host.
client IrcClient The client, where the user was seen on.
리턴 System