Class UpdatableProperty
Defines how to set and get values from a property for the UpdateEngine.
public abstract class UpdatableProperty : UpdatablePropertyBase- Inheritance
- 
      objectUpdatableProperty
- Derived
- Inherited Members
Constructors
UpdatableProperty(nint, bool, nint, bool)
protected UpdatableProperty(nint getter, bool virtualDispatchGetter, nint setter, bool virtualDispatchSetter)Parameters
Fields
Getter
public readonly nint GetterField Value
Setter
public readonly nint SetterField Value
VirtualDispatchGetter
public readonly bool VirtualDispatchGetterField Value
VirtualDispatchSetter
public readonly bool VirtualDispatchSetterField Value
Methods
GetObject(nint)
Gets a reference object from a property.
public object GetObject(nint obj)Parameters
- objnint
- The object encoded as a native pointer (UpdateEngine will make sure it is pinned). 
Returns
- object
- The object value from the property. 
SetObject(nint, object)
Sets a reference object from a property.
public void SetObject(nint obj, object data)Parameters
- objnint
- The object encoded as a native pointer (UpdateEngine will make sure it is pinned). 
- dataobject
- The object value to set.