internal TicketAuthCompleteCallback(JobID targetJobID, CMsgClientTicketAuthComplete body)
 {
     JobID = targetJobID;
     AuthSessionResponse = (EAuthSessionResponse)body.eauth_session_response;
     State          = body.estate;
     GameID         = body.game_id;
     OwnerSteamID   = body.owner_steam_id;
     SteamID        = body.steam_id;
     TicketCRC      = body.ticket_crc;
     TicketSequence = body.ticket_sequence;
 }
Exemple #2
0
            internal TicketAuthCallback(CMsgClientTicketAuthComplete tickAuth)
            {
                SteamID = tickAuth.steam_id;
                GameID  = tickAuth.game_id;

                State = tickAuth.estate;

                AuthSessionResponse = ( EAuthSessionResponse )tickAuth.eauth_session_response;

                TicketCRC      = tickAuth.ticket_crc;
                TicketSequence = tickAuth.ticket_sequence;
            }
Exemple #3
0
 internal TicketAuthCallback(SteamClient client, CMsgClientTicketAuthComplete tickAuth)
     : base(client)