C# 클래스 Squishy.Irc.IrcUser

상속: IComparable, ChatTarget
파일 보기 프로젝트 열기: jaddie/WCell-Utility-Bot 1 사용 예제들

공개 메소드들

메소드 설명
CompareTo ( Object o ) : int
GetEnumerator ( ) : IEnumerator
IrcUser ( IrcClient irc, string mask ) : System
IrcUser ( IrcClient irc, string nick, IrcChannel chan ) : System
Is ( string nick ) : bool

Compares this user'str nick with the specified string case-insensitively.

IsOn ( IrcChannel chan ) : bool

Indicates wether or not this User is on the specified channel.

IsOn ( string channame ) : bool

Indicates wether or not this User is on the channel with the specified name

Matches ( string mask ) : bool
Msg ( object format ) : void
Notice ( string line ) : void
ToString ( ) : string
this ( string name ) : IrcChannel

Returns the Channel with the specific name or null if the user is not on the Channel.

비공개 메소드들

메소드 설명
AddChannel ( IrcChannel chan ) : void
AddMode ( string mode ) : void
ChangeNick ( string newNick ) : void
DeleteChannel ( string chan ) : void
DeleteMode ( string mode ) : void
IrcUser ( IrcClient irc ) : System
Parse ( string mask ) : void
SetInfo ( string username, string host, string info ) : void
SetInfo ( string nick, string username, string pw, string info ) : void

메소드 상세

CompareTo() 공개 메소드

public CompareTo ( Object o ) : int
o Object
리턴 int

GetEnumerator() 공개 메소드

public GetEnumerator ( ) : IEnumerator
리턴 IEnumerator

IrcUser() 공개 메소드

public IrcUser ( IrcClient irc, string mask ) : System
irc IrcClient
mask string
리턴 System

IrcUser() 공개 메소드

public IrcUser ( IrcClient irc, string nick, IrcChannel chan ) : System
irc IrcClient
nick string
chan IrcChannel
리턴 System

Is() 공개 메소드

Compares this user'str nick with the specified string case-insensitively.
public Is ( string nick ) : bool
nick string
리턴 bool

IsOn() 공개 메소드

Indicates wether or not this User is on the specified channel.
public IsOn ( IrcChannel chan ) : bool
chan IrcChannel
리턴 bool

IsOn() 공개 메소드

Indicates wether or not this User is on the channel with the specified name
public IsOn ( string channame ) : bool
channame string
리턴 bool

Matches() 공개 메소드

public Matches ( string mask ) : bool
mask string The mask that is to be matched with this User'str mask.
리턴 bool

Msg() 공개 메소드

public Msg ( object format ) : void
format object
리턴 void

Notice() 공개 메소드

public Notice ( string line ) : void
line string
리턴 void

ToString() 공개 메소드

public ToString ( ) : string
리턴 string

this() 공개 메소드

Returns the Channel with the specific name or null if the user is not on the Channel.
public this ( string name ) : IrcChannel
name string
리턴 IrcChannel