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