| 
            
              EngineGroupIsInTime Method
             | 
          
        
        
            Verifies if the request comes in time.
            
        
        Namespace: GSF.Net.Snmp.PipelineAssembly: GSF.Net (in GSF.Net.dll) Version: 2.4.257-beta
Syntaxpublic static bool IsInTime(
	int[] currentTimeData,
	int pastReboots,
	int pastTime
)
Public Shared Function IsInTime ( 
	currentTimeData As Integer(),
	pastReboots As Integer,
	pastTime As Integer
) As Boolean
public:
static bool IsInTime(
	array<int>^ currentTimeData, 
	int pastReboots, 
	int pastTime
)
static member IsInTime : 
        currentTimeData : int[] * 
        pastReboots : int * 
        pastTime : int -> bool GSF.Net.Snmp.Pipeline.EngineGroup.IsInTime = function(currentTimeData, pastReboots, pastTime);
 View SourceParameters
- currentTimeData  Int32
 - The current time data.
 - pastReboots  Int32
 - The past reboots.
 - pastTime  Int32
 - The past time.
 
Return Value
Booleantrue if the request is in time window; otherwise, 
false.
            
See Also