CompanyNameMatchOption

Specifies whether the string specified for the CompanyName property must be an exact match or can be a partial match to identify an application associated with this right.

Syntax

StringMatchOption CompanyNameMatchOption {get; set;}

Property value

The match criteria operator, which specifies the type of matching to perform for the company name field.

Possible values:

public enum StringMatchOption  
{  
    // Exact match
    ExactMatch,  
    // Partial match
    Contains
}

Example

See CompanyName for code sample that illustrates using CompanyNameMatchOption in a script.