This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,21 @@
using System;
using System.Runtime.InteropServices;
namespace System.Security.Policy
{
/// <summary>Specifies the type of user interface (UI) the trust manager should use for trust decisions. </summary>
// Token: 0x020005A3 RID: 1443
[ComVisible(true)]
public enum TrustManagerUIContext
{
/// <summary>An Install UI.</summary>
// Token: 0x04001584 RID: 5508
Install,
/// <summary>An Upgrade UI.</summary>
// Token: 0x04001585 RID: 5509
Upgrade,
/// <summary>A Run UI.</summary>
// Token: 0x04001586 RID: 5510
Run
}
}