C# Class Amazon.Util.Storage.Internal.PlayerPreferenceKVStore

A Storage class which implement Key Value Store
Inheritance: KVStore
Afficher le fichier Open project: aws/aws-sdk-net Class Usage Examples

Méthodes publiques

Méthode Description
Clear ( string key ) : void

Clears the value identified by key

Get ( string key ) : string

Gets the value identified by key

Put ( string key, string value ) : void

Puts the value identifying it by a key

Private Methods

Méthode Description
ClearHelper ( string key ) : void
GetHelper ( string key ) : string
PutHelper ( string key, string value ) : void

Method Details

Clear() public méthode

Clears the value identified by key
public Clear ( string key ) : void
key string Identifier
Résultat void

Get() public méthode

Gets the value identified by key
public Get ( string key ) : string
key string Identifier
Résultat string

Put() public méthode

Puts the value identifying it by a key
public Put ( string key, string value ) : void
key string identifier
value string value to be stored
Résultat void