CommandPatternType

Gets or sets the type of pattern used to match the command.

Syntax

PatternType CommandPatternType {get; set;}

Property value

The type of pattern-matching to use to identify the command.

Possible values:

public enum PatternType
{
     // Match using glob pattern
        Glob = 0,
     // Match using regular expression
        RegularExpression = 1
 }