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