EntitySchemaPropertyTEntity Constructor  | 
 
            Initializes a new instance.
            
 
    Namespace: 
   AGI.Foundation.Tracking
    Assembly:
   AGI.Foundation.Tracking (in AGI.Foundation.Tracking.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic EntitySchemaProperty(
	string name,
	Type type,
	EntityPropertyGetter<TEntity> getter,
	EntityPropertySetter<TEntity> setter
)
Public Sub New ( 
	name As String,
	type As Type,
	getter As EntityPropertyGetter(Of TEntity),
	setter As EntityPropertySetter(Of TEntity)
)
public:
EntitySchemaProperty(
	String^ name, 
	Type^ type, 
	EntityPropertyGetter<TEntity>^ getter, 
	EntityPropertySetter<TEntity>^ setter
)
new : 
        name : string * 
        type : Type * 
        getter : EntityPropertyGetter<'TEntity> * 
        setter : EntityPropertySetter<'TEntity> -> EntitySchemaPropertyParameters
- name
 - Type: SystemString
The name of the property. - type
 - Type: SystemType
The type of the property. - getter
 - Type: AGI.Foundation.TrackingEntityPropertyGetterTEntity
A callback to get the value of the property. - setter
 - Type: AGI.Foundation.TrackingEntityPropertySetterTEntity
A callback to set the value of the property. 
See Also