Class UpdatableCustomAccessor
Provide a custom implementation to access a member by the UpdateEngine.
public abstract class UpdatableCustomAccessor : UpdatablePropertyBase
- Inheritance
-
UpdatableCustomAccessor
- Inherited Members
Methods
GetObject(nint)
Gets a reference object from a property.
public abstract object GetObject(nint obj)
Parameters
obj
nintThe 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 abstract void SetObject(nint obj, object data)
Parameters
obj
nintThe object encoded as a native pointer (UpdateEngine will make sure it is pinned).
data
objectThe object value to set.