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

Method Details

Clear() public abstract méthode

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

Get() public abstract méthode

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

Put() public abstract méthode

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
Résultat void