|
TrackableT(String, T, Boolean) Constructor
|
Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax public Trackable(
string propertyName,
T initialValue = null,
bool autoTrack = false
)
Public Sub New (
propertyName As String,
Optional initialValue As T = Nothing,
Optional autoTrack As Boolean = false
)
public:
Trackable(
String^ propertyName,
T initialValue = nullptr,
bool autoTrack = false
)
new :
propertyName : string *
?initialValue : 'T *
?autoTrack : bool
(* Defaults:
let _initialValue = defaultArg initialValue null
let _autoTrack = defaultArg autoTrack false
*)
-> Trackable
GSF.Trackable = function(propertyName, initialValue, autoTrack);
View SourceParameters
- 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