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,16 @@
using System;
using System.Runtime.InteropServices;
namespace System.Security.Permissions
{
/// <summary>Allows a permission to expose an unrestricted state.</summary>
// Token: 0x0200054E RID: 1358
[ComVisible(true)]
public interface IUnrestrictedPermission
{
/// <summary>Returns a value indicating whether unrestricted access to the resource protected by the permission is allowed.</summary>
/// <returns>true if unrestricted use of the resource protected by the permission is allowed; otherwise, false.</returns>
// Token: 0x060031AF RID: 12719
bool IsUnrestricted();
}
}