System.Security.Permissions.PermissionState Enumeration

Assembly: Mscorlib.dll
Namespace: System.Security.Permissions
Summary
Specifies whether a permission should have all or no access to resources at creation.
C# Syntax:
[Serializable]
public enum PermissionState
Remarks
Permissions can be created in either a totally restrictive or totally unrestrictive state. A totally restrictive state allows no access to resources; a totally unrestricted state allows all access to a particular resource. For example, the file permission constructor could create an object representing either no access to any files or all access to all files.

Each type of permission clearly defines extreme states representing either all or none of the permissions expressible within the type. Thus, it is possible to create a generic permission in a completely restricted or unrestricted state without knowledge of the particular permission; however, intermediate states can only be set according to the specific permission semantics.

All code access permissions implemented in the .NET Framework can take a PermissionState value as an argument to their constructor.

See also:
System.Security.Permissions Namespace

System.Security.Permissions.PermissionState Member List:

Public Fields
None No access to the resource protected by the permission.
Unrestricted Full access to the resource protected by the permission.

Hierarchy:


Top of page

Copyright (c) 2002 Microsoft Corporation. All rights reserved.