C# Class Amazon.Util.Storage.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

Method Details

Clear() public abstract method

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

Get() public abstract method

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

Put() public abstract method

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