C# 클래스 PerpetualEngine.Storage.DesktopSimpleStorage

Not persistent right now... only used for unit tests
상속: SimpleStorage
파일 보기 프로젝트 열기: perpetual-mobile/SimpleStorage 1 사용 예제들

공개 메소드들

메소드 설명
Clear ( ) : void
Delete ( string key ) : void

Delete the specified key.

DesktopSimpleStorage ( string groupName ) : System
Get ( string key ) : string

Retrieves value with given key.

Put ( string key, string value ) : void

Persists a value with given key.

메소드 상세

Clear() 공개 메소드

public Clear ( ) : void
리턴 void

Delete() 공개 메소드

Delete the specified key.
public Delete ( string key ) : void
key string
리턴 void

DesktopSimpleStorage() 공개 메소드

public DesktopSimpleStorage ( string groupName ) : System
groupName string
리턴 System

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