HealthStateFilter 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.
Enumerates filters for parameters of type HealthState. This enumeration has a System.FlagsAttribute that allows a bitwise combination of its member values.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[System.Flags]
public enum HealthStateFilter
type HealthStateFilter =
Public Enum HealthStateFilter
- Inheritance
-
System.EnumHealthStateFilter
- Attributes
-
System.FlagsAttribute
Fields
All | 65535 | Filter that matches any HealthState. |
Default | 0 | Default value. Depending on usage, may match any HealthState or none. |
Error | 8 | Filter that matches input with value Error. |
None | 1 | Filter that doesn’t match any HealthStateFilter. Used in order to return no results on a given collection of states. |
Ok | 2 | Filter that matches input with value Ok. |
Warning | 4 | Filter that matches input with value Warning. |