using System;
using System.Runtime.InteropServices;
namespace System.Security.Policy
{
/// Specifies how to match versions when locating application trusts in a collection.
// Token: 0x02000581 RID: 1409
[ComVisible(true)]
public enum ApplicationVersionMatch
{
/// Match on the exact version.
// Token: 0x04001515 RID: 5397
MatchExactVersion,
/// Match on all versions.
// Token: 0x04001516 RID: 5398
MatchAllVersions
}
}