Esempio n. 1
0
 /// <summary>
 ///get users in different channel, parameter is the channel name of type string (example: "#yourchannel")
 /// </summary>
 /// <param name="channel"></param>
 public void GetUsersInDifferentChannel(string channel)
 {
     IrcClient.GetUsersInChannel(channel);
 }
Esempio n. 2
0
 /// <summary>
 ///get users in current channel
 /// </summary>
 public void GetUsersInCurrentChannel()
 {
     IrcClient.GetUsersInChannel();
 }