|   | DeviceStatisticsHelperTReset(Int64) Method | 
        
        
            Resets the member variables used to track
            statistics for the device wrapped by this helper.
            
        
        Namespace: GSF.TimeSeries.StatisticsAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic void Reset(
	long nowTicks
)
Public Sub Reset ( 
	nowTicks As Long
)
public:
void Reset(
	long long nowTicks
)
member Reset : 
        nowTicks : int64 -> unit function Reset(nowTicks);
Parameters
- nowTicks  Int64
- The current time, in ticks.
 Remarks
Remarks
            Call this when the connection to a device has been
            reset to mark a starting point for statistics gathering.
            Since the 
Update(Int64) method keeps track
            of the time it was last called, it is necessary to call
            this method during long periods of downtime where Update
            was not being called in order to avoid momentary, unexpectedly
            large values to be calculated for measurements expected.
            This method is preferred when tracking statistics for multiple
            
IDevices to reduce the number of calls to
            
UtcNow.
            
 See Also
See Also