Class DynamicChild
Represents a dynamic child value with its property attribute
Namespace: Artemis.Core.Modules
Assembly: Artemis.Core.dll
Syntax
public abstract class DynamicChild
Properties
Attribute
Gets the attribute describing the dynamic child
Declaration
public DataModelPropertyAttribute Attribute { get; }
Property Value
Type | Description |
---|---|
DataModelPropertyAttribute |
BaseValue
Gets the current value of the dynamic child
Declaration
public object? BaseValue { get; }
Property Value
Type | Description |
---|---|
object |
Key
Gets the key of the dynamic child
Declaration
public string Key { get; }
Property Value
Type | Description |
---|---|
string |
Type
Gets the type of BaseValue
Declaration
public Type Type { get; }
Property Value
Type | Description |
---|---|
Type |
Methods
GetValue()
Gets the current value of the dynamic child
Declaration
protected abstract object? GetValue()
Returns
Type | Description |
---|---|
object | The current value of the dynamic child |