System.Security.Permissions.IUnrestrictedPermission Interface
Assembly:
Mscorlib.dll
Namespace:
System.Security.Permissions
Summary
Allows a permission to expose an unrestricted state.
C# Syntax:
public interface IUnrestrictedPermission
Remarks
All code access permissions should implement
IUnrestrictedPermission
.
See also:
System.Security.Permissions Namespace
See also:
MSDN: permissions
|
MSDN: requestingpermissions
System.Security.Permissions.IUnrestrictedPermission Member List:
Public Methods
IsUnrestricted
Returns a value indicating whether unrestricted access to the resource protected by the permission is allowed.
System.Security.Permissions.IUnrestrictedPermission Member Details
Method:
IsUnrestricted
()
Summary
Returns a value indicating whether unrestricted access to the resource protected by the permission is allowed.
C# Syntax:
bool
IsUnrestricted();
Return Value:
true
if unrestricted use of the resource protected by the permission is allowed; otherwise,
false
.
Return to top
Top of page
Copyright (c) 2002 Microsoft Corporation. All rights reserved.