FileDescriptionMatchOption
Specifies whether the string specified for the FileDescription property must be
an exact match or a partial match to identify an application associated with
this right.
Syntax
StringMatchOption FileDescriptionMatchOption {get; set;}
                                                    
Property value
The match criteria operator, which specifies the type of matching to perform for the file description field.
Possible values:
public enum StringMatchOption  
{  
    // Exact match
    ExactMatch,  
    // Partial match
    Contains  
}