PublisherMatchOption
Specifies whether the publisher information must be an exact match, partial
match, start with, or end with the string specified for the Publisher
property.
Syntax
StringMatchOption PublisherMatchOption {get; set;}
Property value
The match criteria operator, which specifies the type of matching to perform for the publisher field.
Possible values:
public enum StringMatchOption
{
// Exact match
ExactMatch,
// Partial match
Contains
// Starts with match
StartsWith
// Ends with match
EndsWith
}