![]() |
GameDB
1.6.0
GameDB Pro is a plugin that provides an easy to use and powerful game and meta data editor
|
The Remote class provides methods to communicate with GameDB servers. More...
Static Public Member Functions | |
static RequestUpdater | GetLatestDeployment (string serverHost, string downloadHost, string scope, string tag, string checksum, string userID, string key, string salt, Action< Exception, string, int > callback) |
Gets the latest deployed GameDB for a particular tag. More... | |
The Remote class provides methods to communicate with GameDB servers.
|
static |
Gets the latest deployed GameDB for a particular tag.
serverHost | The server host base address of the GameDB server to communicate with. For example: https://mygamedbserver.com |
downloadHost | The download host base address of the GameDB to download. For example https://s3.aws.com/mygamedb |
scope | The scope name of the GameDB to check. |
tag | The tag used to download the correct version of the GameDB |
checksum | The checksum of the currently on disk GameDB. |
userID | A unique identified used to represent the client downloading the GameDB. Can be used for A/B testing GameDB versions |
key | the key used to encrypt the database via the GameDBLibrary.BinaryGameDB utilities. Required if using binary = true |
salt | the salt used to encrypt the database via the GameDBLibrary.BinaryGameDB utilities. Required if using binary = true |
callback | A callback called when the communication is complete. Returning information about the latest GameDB. |