Click or drag to resize

IConfigurableTrackableTypeT Interface

Defines how a trackable type can be configured

Namespace:  TrackerDog.Configuration
Assembly:  TrackerDog (in TrackerDog.dll) Version: 2.2.1.0 (2.2.1.0)
Syntax
public interface IConfigurableTrackableType<T> : IConfigurableTrackableType

Type Parameters

T
The type to be tracked

The IConfigurableTrackableTypeT type exposes the following members.

Properties
  NameDescription
Public propertyType
Gets the type to be tracked
(Inherited from IConfigurableTrackableType.)
Top
Methods
  NameDescription
Public methodIncludeProperties(IEnumerablePropertyInfo)
Configures multiple properties to be change-tracked for the current tracked type.
(Inherited from IConfigurableTrackableType.)
Public methodIncludeProperties(PropertyInfo)
Configures multiple properties to be change-tracked for the current tracked type.
(Inherited from IConfigurableTrackableType.)
Public methodIncludeProperties(ExpressionFuncT, Object)
Configures a property to be trackable by provoding an expression which selects the whole property
Public methodIncludeProperty(PropertyInfo)
Configures a given property to be tracked for current type. The property must be declared on the type being configured.
(Inherited from IConfigurableTrackableType.)
Public methodIncludeProperty(ExpressionFuncT, Object)
Configures a property to be trackable by provoding an expression which selects the whole property
Top
See Also