C# Класс Amazon.Util.Storage.Internal.PlayerPreferenceKVStore

A Storage class which implement Key Value Store
Наследование: KVStore
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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

Приватные методы

Метод Описание
ClearHelper ( string key ) : void
GetHelper ( string key ) : string
PutHelper ( string key, string value ) : void

Описание методов

Clear() публичный Метод

Clears the value identified by key
public Clear ( string key ) : void
key string Identifier
Результат void

Get() публичный Метод

Gets the value identified by key
public Get ( string key ) : string
key string Identifier
Результат string

Put() публичный Метод

Puts the value identifying it by a key
public Put ( string key, string value ) : void
key string identifier
value string value to be stored
Результат void