SwitchFlags 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.
Flags that are specified on a switch statement. Values may be or'ed together, not all invalid combinations of flags are detected.
This enumeration supports a bitwise combination of its member values.
public enum class SwitchFlags
[System.Flags]
public enum SwitchFlags
[<System.Flags>]
type SwitchFlags =
Public Enum SwitchFlags
- Inheritance
-
SwitchFlags
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No flags specified. |
File | 1 | The -file flag. |
Regex | 2 | The -regex flag. |
Wildcard | 4 | The -wildcard flag. |
Exact | 8 | The -exact flag. |
CaseSensitive | 16 | The -casesensitive flag. |
Parallel | 32 | The -parallel flag. |