Class StateVariable<T>
Inheritance
StateVariable<T>
Assembly: DotNetNuke.dll
Syntax
public abstract class StateVariable<T>
Type Parameters
Constructors
StateVariable(string)
Declaration
protected StateVariable(string key)
Parameters
Type |
Name |
Description |
string |
key |
|
StateVariable(string, Func<T>)
Declaration
protected StateVariable(string key, Func<T> initializer)
Parameters
Type |
Name |
Description |
string |
key |
|
Func<T> |
initializer |
|
Properties
HasValue
Declaration
public bool HasValue { get; }
Property Value
this[string]
Declaration
protected abstract object this[string key] { get; set; }
Parameters
Type |
Name |
Description |
string |
key |
|
Property Value
Value
Declaration
public T Value { get; set; }
Property Value
ValueOrDefault
Declaration
public T ValueOrDefault { get; }
Property Value
Methods
Clear()
Declaration
Remove(string)
Declaration
protected abstract void Remove(string key)
Parameters
Type |
Name |
Description |
string |
key |
|
Extension Methods