IrcDotNet.IrcUser.WhoWas C# (CSharp) Method

WhoWas() public method

Sends a Who Was query to server for the user.
public WhoWas ( int entriesCount = -1 ) : void
entriesCount int /// The maximum number of entries that the server should return. A negative number /// specifies an unlimited number of entries. ///
return void
        public void WhoWas(int entriesCount = -1)
        {
            client.QueryWhoWas(new[] {nickName}, entriesCount);
        }