C# 클래스 PerpetualEngine.Storage.DroidSimpleStorage

상속: SimpleStorage
파일 보기 프로젝트 열기: perpetual-mobile/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