Invite() приватный Метод

private Invite ( IrcChannel channel, string userNickName ) : void
channel IrcChannel
userNickName string
Результат void
Пример #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);
 }