Method | Description | |
---|---|---|
FetchGlobal ( string key ) : |
Creates an API call to fetch data from an entry in the game's global data storage.
|
|
FetchUser ( string key, string username, string token ) : |
Creates an API call to fetch data from an entry in the user's data storage.
|
|
GetKeysGlobal ( ) : |
Creates an API call to get all storage keys for this game.
|
|
GetKeysGlobal ( string pattern ) : |
Creates an API call to get all storage keys for this game that match the given pattern.
|
|
GetKeysUser ( string username, string token ) : |
Creates an API call to get all storage keys for this user.
|
|
GetKeysUser ( string pattern, string username, string token ) : |
Creates an API call to get all storage keys for this user that match the given pattern.
|
|
RemoveGlobal ( string key ) : |
Creates an API call that removes an entry from the global data storage.
|
|
RemoveGlobal ( string key, string username, string token ) : |
Creates an API call that removes an entry from the user's data storage.
|
|
SetGlobal ( string key, string data ) : |
Creates an API call to set a global data storage entry.
|
|
SetRestricted ( string key, string data, string username, string token ) : |
Creates an API call that sets a global data storage item that can only be set by the user that created it.
|
|
SetUser ( string key, string data, string username, string token ) : |
Creates an API call to set a user's data storage entry.
|
|
UpdateGlobal ( string key, StorageUpdateOperation operation, string value ) : |
Creates an API call that updates a value in the global data storage.
|
|
UpdateGlobal ( string key, StorageUpdateOperation operation, string value, string username, string token ) : |
Creates an API call that updates a value in the user's data storage.
|
public static FetchGlobal ( string key ) : |
||
key | string | The key to return the data from. |
return |
public static FetchUser ( string key, string username, string token ) : |
||
key | string | The key to return the data from. |
username | string | The username of the user. |
token | string | The token of the user. |
return |
public static GetKeysGlobal ( string pattern ) : |
||
pattern | string | |
return |
public static GetKeysUser ( string username, string token ) : |
||
username | string | |
token | string | |
return |
public static GetKeysUser ( string pattern, string username, string token ) : |
||
pattern | string | |
username | string | |
token | string | |
return |
public static RemoveGlobal ( string key ) : |
||
key | string | |
return |
public static RemoveGlobal ( string key, string username, string token ) : |
||
key | string | |
username | string | |
token | string | |
return |
public static SetGlobal ( string key, string data ) : |
||
key | string | |
data | string | |
return |
public static SetRestricted ( string key, string data, string username, string token ) : |
||
key | string | |
data | string | |
username | string | |
token | string | |
return |
public static SetUser ( string key, string data, string username, string token ) : |
||
key | string | |
data | string | |
username | string | |
token | string | |
return |
public static UpdateGlobal ( string key, StorageUpdateOperation operation, string value ) : |
||
key | string | |
operation | StorageUpdateOperation | |
value | string | |
return |
public static UpdateGlobal ( string key, StorageUpdateOperation operation, string value, string username, string token ) : |
||
key | string | |
operation | StorageUpdateOperation | |
value | string | |
username | string | |
token | string | |
return |