C# Класс PerpetualEngine.Storage.DroidSimpleStorage

Наследование: SimpleStorage
Показать файл Открыть проект

Private Properties

Свойство Тип Описание

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

Метод Описание
Delete ( string key ) : void

Delete the specified key.

DroidSimpleStorage ( string groupName, Android.Content.Context context ) : Android.Content
Get ( string key ) : string

Retrieves value with given key.

Put ( string key, string value ) : void

Persists a value with given key.

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

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

Delete the specified key.
public Delete ( string key ) : void
key string
Результат void

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

public DroidSimpleStorage ( string groupName, Android.Content.Context context ) : Android.Content
groupName string
context Android.Content.Context
Результат Android.Content

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

Retrieves value with given key.
public Get ( string key ) : string
key string
Результат string

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

Persists a value with given key.
public Put ( string key, string value ) : void
key string Key
value string if value is null, the key will be deleted
Результат void