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 FlagsAttribute that allows a bitwise combination of its member values.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum HealthStateFilter
[<System.Flags>]
type HealthStateFilter =
Public Enum HealthStateFilter
- Inheritance
-
HealthStateFilter
- Attributes
Fields
Name | Value | Description |
---|---|---|
Default | 0 | Default value. Depending on usage, may match any HealthState or none. |
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. |
Error | 8 | Filter that matches input with value Error. |
All | 65535 | Filter that matches any HealthState. |
Applies to
Azure SDK for .NET