SensorUpdateStrategy Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Selects when the sensors get updated values
public enum SensorUpdateStrategy
type SensorUpdateStrategy =
Public Enum SensorUpdateStrategy
- Inheritance
-
SensorUpdateStrategy
Fields
Name | Value | Description |
---|---|---|
Unspecified | 0 | The setting has not been set |
PerSensor | 1 | Each time a sensor's TryGetValue is called, a new value is selected. This is the default (and only supported option) for WMI |
SynchronousAfterTimeout | 2 | All sensors are updated synchronously when the value is older than the MonitoringInterval. |
SynchronousExplicit | 3 | All sensors are updated only when UpdateSensors(Boolean) is explicitly called |