SwitchFlags Enum

Definition

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

CaseSensitive 16

The -casesensitive flag.

Exact 8

The -exact flag.

File 1

The -file flag.

None 0

No flags specified.

Parallel 32

The -parallel flag.

Regex 2

The -regex flag.

Wildcard 4

The -wildcard flag.

Applies to