BattleNet.Bncs.AuthCheck C# (CSharp) Method

AuthCheck() protected method

protected AuthCheck ( byte type, List data ) : void
type byte
data List
return void
        protected void AuthCheck(byte type, List<byte> data)
        {
            if (ClientlessBot.debugging)
                Console.WriteLine("{0}: [BNCS] Auth Check:", m_owner.Account);
            ulong result = BitConverter.ToUInt32(data.ToArray(), 4);
            String info = BitConverter.ToString(data.ToArray(), 8);

            if (!handleAuthCheckResult(result, info))
                return;
        }