Kick() private method

private Kick ( IEnumerable channelUsers, string comment = null ) : void
channelUsers IEnumerable
comment string
return void
Exemplo n.º 1
0
 /// <summary>
 ///     Kicks the specified user from the channel, giving the specified comment.
 /// </summary>
 /// <param name="userNickName">The nick name of the user to kick from the channel.</param>
 /// <param name="comment">The comment to give for the kick, or <see langword="null" /> for none.</param>
 public void Kick(string userNickName, string comment = null)
 {
     client.Kick(this, new[] { userNickName }, comment);
 }