FileVersionMatchOption
Specifies whether the version must be equal to, earlier than or equal to, or
later than or equal to the version specified for the FileVersion
property.
Syntax
VersionMatchOption FileVersionMatchOption {get; set;}
Property value
The match criteria operator, which specifies the type of matching to perform for the file 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
}