Property | Type | Description | |
---|---|---|---|
GetValueFromRegistry | object | ||
TryEnumerationConversionIfRequired | object |
Method | Description | |
---|---|---|
Context ( object view, |
Initializes a new instance of the Context class.
|
|
Context ( object view, |
Initializes a new instance of the Context class.
|
|
IsTruthyValue ( object value ) : bool |
Checks if the passed value is Truthy
|
|
Lookup ( string name ) : object |
Looks up a value by name from the context
|
|
Push ( object newView ) : |
Returns a new Context with the given view and it's parent set as the current context
|
Method | Description | |
---|---|---|
GetValueFromRegistry ( object value, string key ) : object |
Gets a value from the registry using the initalized value getters
|
|
TryEnumerationConversionIfRequired ( object value ) : object |
Tries to convert an object into an Enumeration if possible
|
public Context ( object view, |
||
view | object | The data view to create the context with |
registry | A reference to the a registry instance | |
parentContext | The parent context for the new context | |
settings | The render settings | |
return | System.Reflection |
public Context ( object view, |
||
view | object | The data view to create the context with |
registry | A reference to the a registry instance | |
settings | The render settings | |
return | System.Reflection |
public IsTruthyValue ( object value ) : bool | ||
value | object | The value to check |
return | bool |
public Lookup ( string name ) : object | ||
name | string | The name of the value to lookup |
return | object |
public Push ( object newView ) : |
||
newView | object | The data view to create the new context with |
return |