Invite() private method

private Invite ( IrcChannel channel, string userNickName ) : void
channel IrcChannel
userNickName string
return void
Example #1
0
 /// <summary>
 /// Invites the the specified user to the channel.
 /// </summary>
 /// <param name="userNickName">The nick name of the user to invite.</param>
 public void Invite(string userNickName)
 {
     client.Invite(this, userNickName);
 }