C# 클래스 Adf.Base.State.NullStateProvider

Represents special type of state that is empty. Provides properties and methods to get, set, remove a value from the empty state corresponding to a specified key etc.
상속: IStateProvider
파일 보기 프로젝트 열기: NLADP/ADF

공개 메소드들

메소드 설명
Has ( object o ) : bool

Returns a value indicating that no value exists in the empty state corresponding to the specified key object.

Has ( object o, string key ) : bool

Returns a value indicating that no value exists in the empty state corresponding to the specified key (combination of the specified object and string).

Has ( string key ) : bool

Returns a value indicating that no value exists in the empty state corresponding to the specified key.

Remove ( object o ) : void

Removes the value corresponding to the specified key object from the empty state.

Remove ( string key ) : void

Removes the value corresponding to the specified key from the empty state.

this ( object o ) : object

Gets or sets the value corresponding to the specified key object in the empty state.

this ( object o, string key ) : object

Gets or sets the value corresponding to the specified key (combination of the specified object and string) in the empty state.

this ( string key ) : object

Gets or sets the value corresponding to the specified key in the empty state.

메소드 상세

Has() 공개 메소드

Returns a value indicating that no value exists in the empty state corresponding to the specified key object.
public Has ( object o ) : bool
o object The key object for which the corresponding value esists or not, is being checked.
리턴 bool

Has() 공개 메소드

Returns a value indicating that no value exists in the empty state corresponding to the specified key (combination of the specified object and string).
public Has ( object o, string key ) : bool
o object The object part of the key for which the corresponding value esists or not, is being checked.
key string The string part of the key for which the corresponding value esists or not, is being checked.
리턴 bool

Has() 공개 메소드

Returns a value indicating that no value exists in the empty state corresponding to the specified key.
public Has ( string key ) : bool
key string The key for which the corresponding value esists or not, is being checked.
리턴 bool

Remove() 공개 메소드

Removes the value corresponding to the specified key object from the empty state.
/// The method is yet to be implemented. ///
public Remove ( object o ) : void
o object The key object for which the corresponding value is to be removed.
리턴 void

Remove() 공개 메소드

Removes the value corresponding to the specified key from the empty state.
/// The method is yet to be implemented. ///
public Remove ( string key ) : void
key string The key for which the corresponding value is to be removed.
리턴 void

this() 공개 메소드

Gets or sets the value corresponding to the specified key object in the empty state.
/// The property is yet to be implemented. ///
public this ( object o ) : object
o object The key object for which the corresponding value is get or set.
리턴 object

this() 공개 메소드

Gets or sets the value corresponding to the specified key (combination of the specified object and string) in the empty state.
/// The property is yet to be implemented. ///
public this ( object o, string key ) : object
o object The object part of the key for which the corresponding value is get or set.
key string The string part of the key for which the corresponding value is get or set.
리턴 object

this() 공개 메소드

Gets or sets the value corresponding to the specified key in the empty state.
/// The property is yet to be implemented. ///
public this ( string key ) : object
key string The key for which the corresponding value is get or set.
리턴 object