Click or drag to resize

EntitySchemaProperty<TEntity> Constructor

Initializes a new instance.

Namespace:  AGI.Foundation.Tracking
Assembly:  AGI.Foundation.Tracking (in AGI.Foundation.Tracking.dll) Version: 24.3.420.0 (24.3.420.0)
Syntax
public EntitySchemaProperty(
	string name,
	Type type,
	EntityPropertyGetter<TEntity> getter,
	EntityPropertySetter<TEntity> setter
)

Parameters

name
Type: System.String
The name of the property.
type
Type: System.Type
The type of the property.
getter
Type: AGI.Foundation.Tracking.EntityPropertyGetter<TEntity>
A callback to get the value of the property.
setter
Type: AGI.Foundation.Tracking.EntityPropertySetter<TEntity>
A callback to set the value of the property.
See Also