C# Class 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.
Inheritance: IStateProvider
Datei anzeigen Open project: NLADP/ADF

Public Methods

Method Description
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.

Method Details

Has() public method

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.
return bool

Has() public method

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.
return bool

Has() public method

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.
return bool

Remove() public method

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.
return void

Remove() public method

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.
return void

this() public method

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.
return object

this() public method

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.
return object

this() public method

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.
return object