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

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

Public Methods

Method 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

Method Description
ClearHelper ( string key ) : void
GetHelper ( string key ) : string
PutHelper ( string key, string value ) : void

Method Details

Clear() public method

Clears the value identified by key
public Clear ( string key ) : void
key string Identifier
return void

Get() public method

Gets the value identified by key
public Get ( string key ) : string
key string Identifier
return string

Put() public method

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