ProductNameMatchOption
Specifies whether the string specified for the ProductName
property must be an
exact match or a partial match.
Syntax
StringMatchOption ProductNameMatchOption {get; set;}
Property value
The match criteria operator, which specifies the type of matching to perform for the product name field.
Possible values:
public enum StringMatchOption
{
// Exact match
ExactMatch,
// Partial match
Contains
}