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);
 }