C# 클래스 Amazon.Util.Storage.Internal.PlayerPreferenceKVStore

A Storage class which implement Key Value Store
상속: KVStore
파일 보기 프로젝트 열기: aws/aws-sdk-net 1 사용 예제들

공개 메소드들

메소드 설명
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