Files
Dec2017-Script-Dump/mscorlib/System/Security/Permissions/IUnrestrictedPermission.cs
T
2026-06-04 11:42:34 +02:00

17 lines
594 B
C#

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();
}
}