C# Class IRC.Client

显示文件 Open project: tamaw/SharpIRC Class Usage Examples

Public Methods

Method Description
Client ( ) : System
Connect ( ) : void
CreateChannel ( string name, string key = "" ) : Channel
CreateChannels ( string names, string keys = null ) : IRC.Channel[]
CreateUser ( string nickname ) : User
Disconnect ( ) : void

Protected Methods

Method Description
ProcessReply ( object sender, Reply reply ) : void

Method Details

Client() public method

public Client ( ) : System
return System

Connect() public method

public Connect ( ) : void
return void

CreateChannel() public method

public CreateChannel ( string name, string key = "" ) : Channel
name string
key string
return Channel

CreateChannels() public method

public CreateChannels ( string names, string keys = null ) : IRC.Channel[]
names string
keys string
return IRC.Channel[]

CreateUser() public method

public CreateUser ( string nickname ) : User
nickname string
return User

Disconnect() public method

public Disconnect ( ) : void
return void

ProcessReply() protected method

protected ProcessReply ( object sender, Reply reply ) : void
sender object
reply Reply
return void