|   | PrecisionTimerClearMinimumTimerResolution Method | 
        
        
        
        Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxpublic static void ClearMinimumTimerResolution(
	int period
)
Public Shared Sub ClearMinimumTimerResolution ( 
	period As Integer
)
public:
static void ClearMinimumTimerResolution(
	int period
)
static member ClearMinimumTimerResolution : 
        period : int -> unit GSF.PrecisionTimer.ClearMinimumTimerResolution = function(period);
Parameters
- period  Int32
- 
            Minimum timer resolution specified in the previous call to the SetMinimumTimerResolution(Int32) function.
            
 Remarks
Remarks
            Call this function immediately after you are finished using the PrecisionTimer. You must match each call to
            SetMinimumTimerResolution(Int32) with a call to ClearMinimumTimerResolution(Int32), specifying the same minimum
            resolution period in both calls. An application can make multiple SetMinimumTimerResolution calls as long
            as each call is matched with a call to ClearMinimumTimerResolution.
            
            This method is currently ignored under Mono deployments.
            
 See Also
See Also