Click or drag to resize

TrackableT(String, T, Boolean) Constructor

Creates a new instance of the TrackableT class.

Namespace: GSF
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.245-beta+94213ae9d4d0aa7a2c48e5398b12d267b99f868a
Syntax
public Trackable(
	string propertyName,
	T initialValue = null,
	bool autoTrack = false
)
View Source

Parameters

propertyName  String
The name of the property being tracked.
initialValue  T  (Optional)
The initial value of the property.
autoTrack  Boolean  (Optional)
Determines the behavior of the setter for the CurrentValue property. Set to false to track only the original and current values.
See Also