Tracker.Configure(object) method¶
Defined in
Type: Tracker
Namespace: CrissCross.WPF.UI
Assembly: CrissCross.WPF.UI.dll
Applies to
net10.0-windows10.0.19041, net9.0-windows10.0.19041, net8.0-windows10.0.19041, net481
Overloads¶
- 1.
public TrackingConfiguration Configure(object target) - 2.
public TrackingConfiguration<T> Configure<T>() - 3.
public TrackingConfiguration Configure(Type type)
1. Overload¶
public TrackingConfiguration Configure(object target)
Summary: Gets or creates a tracking configuration for the target object.
Parameters
| Name | Type | Description |
|---|---|---|
target | object | The target. |
Returns: TrackingConfiguration -- Tracking Configuration.
2. Overload¶
public TrackingConfiguration<T> Configure<T>()
Summary: Gets or creates a tracking configuration for the specified type. Objects of the specified type will be tracked according to the settings that are defined in the configuration object.
Type parameters
| Name | Description |
|---|---|
T | The Type. |
Returns: TrackingConfiguration
3. Overload¶
public TrackingConfiguration Configure(Type type)
Summary: Gets or creates a tracking configuration for the specified type. Objects of the specified type will be tracked according to the settings that are defined in the configuration object.
Parameters
| Name | Type | Description |
|---|---|---|
type | Type | The type. |
Returns: TrackingConfiguration -- Tracking Configuration.