Example #1
0
            internal DepotKeyCallback(CMsgClientGetDepotDecryptionKeyResponse msg)
#endif
            {
                Result   = ( EResult )msg.eresult;
                DepotID  = msg.depot_id;
                DepotKey = msg.depot_encryption_key;
            }
Example #2
0
            internal DepotKeyCallback(JobID jobID, CMsgClientGetDepotDecryptionKeyResponse msg)
            {
                JobID = jobID;

                Result   = ( EResult )msg.eresult;
                DepotID  = msg.depot_id;
                DepotKey = msg.depot_encryption_key;
            }
Example #3
0
 internal DepotKeyCallback(SteamClient client, CMsgClientGetDepotDecryptionKeyResponse msg)
     : base(client)