GetUser() публичный Метод

public GetUser ( string nick ) : IrcUser
nick string The case-insensitive User'str nick.
Результат IrcUser
Пример #1
0
 /// <returns>Wether or not if the user with the specific nick is op on this channel (Has "@" flag)</returns>
 public bool HasOp(string nick)
 {
     return(HasPriv(m_irc.GetUser(nick), Privilege.Op));
 }