ProductVersionMatchOption
Specifies whether the version must be equal to, earlier than or equal to, or
later than or equal to the version specified for the ProductVersion
property.
Syntax
VersionMatchOption ProductVersionMatchOption {get; set;}
Property value
The match criteria operator, which specifies the type of matching to perform for the product version field.
Possible values:
public enum VersionMatchOption
{
// Match the version specified
Equal,
// Match earlier than or equal to the specified version
EarlierThanOrEqualTo,
// Match later than or equal to the specified version
LaterThanOrEqualTo
}