C# 클래스 Amazon.Util.Storage.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

메소드 상세

Clear() 공개 추상적인 메소드

Clears the value identified by key
public abstract Clear ( string key ) : void
key string Identifier
리턴 void

Get() 공개 추상적인 메소드

Gets the value identified by key
public abstract Get ( string key ) : string
key string Identifier
리턴 string

Put() 공개 추상적인 메소드

Puts the value identifying it by a key
public abstract Put ( string key, string value ) : void
key string identifier
value string value to be stored
리턴 void