IrcDotNet.IrcUser.WhoWas C# (CSharp) 메소드

WhoWas() 공개 메소드

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. ///
리턴 void
        public void WhoWas(int entriesCount = -1)
        {
            client.QueryWhoWas(new[] {nickName}, entriesCount);
        }