Class DataProperty
Represents a property in a type, conform to the data model.
Inherited Members
Namespace: Nuqleon.DataModel.TypeSystem
Assembly: Nuqleon.DataModel.CompilerServices.dll
Syntax
public class DataProperty : DataProperty<DataType>
Methods
GetValue(Object)
Gets the value of the property.
Declaration
public object GetValue(object target)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | target | Object to get the property value from. |
Returns
| Type | Description |
|---|---|
| System.Object | Value of the property. |
SetValue(Object, Object)
Sets the value of the property.
Declaration
public void SetValue(object target, object value)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | target | Object to set the property value on. |
| System.Object | value | Property value to set. |