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
Показать файл Открыть проект

Открытые методы

Метод Описание
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