Inheritance: global::ProtoBuf.IExtensible
示例#1
0
            internal DepotKeyCallback( CMsgClientGetDepotDecryptionKeyResponse msg )
#endif
            {
                Result = ( EResult )msg.eresult;
                DepotID = msg.depot_id;
                DepotKey = msg.depot_encryption_key;
            }
示例#2
0
            internal DepotKeyCallback( JobID jobID, CMsgClientGetDepotDecryptionKeyResponse msg )
            {
                JobID = jobID;

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