CodeAccessPermission Class
Defines the underlying structure of all code access permissions.
Assembly: mscorlib (in mscorlib.dll)
System.Security.CodeAccessPermission
System.Configuration.ConfigurationPermission
System.Data.Common.DBDataPermission
System.Data.OracleClient.OraclePermission
System.Drawing.Printing.PrintingPermission
System.Messaging.MessageQueuePermission
System.Net.DnsPermission
System.Net.Mail.SmtpPermission
System.Net.NetworkInformation.NetworkInformationPermission
System.Net.PeerToPeer.Collaboration.PeerCollaborationPermission
System.Net.PeerToPeer.PnrpPermission
System.Net.SocketPermission
System.Net.WebPermission
System.Security.Permissions.DataProtectionPermission
System.Security.Permissions.EnvironmentPermission
System.Security.Permissions.FileDialogPermission
System.Security.Permissions.FileIOPermission
System.Security.Permissions.GacIdentityPermission
System.Security.Permissions.IsolatedStoragePermission
System.Security.Permissions.KeyContainerPermission
System.Security.Permissions.MediaPermission
System.Security.Permissions.PublisherIdentityPermission
System.Security.Permissions.ReflectionPermission
System.Security.Permissions.RegistryPermission
System.Security.Permissions.ResourcePermissionBase
System.Security.Permissions.SecurityPermission
System.Security.Permissions.SiteIdentityPermission
System.Security.Permissions.StorePermission
System.Security.Permissions.StrongNameIdentityPermission
System.Security.Permissions.TypeDescriptorPermission
System.Security.Permissions.UIPermission
System.Security.Permissions.UrlIdentityPermission
System.Security.Permissions.WebBrowserPermission
System.Security.Permissions.ZoneIdentityPermission
System.Transactions.DistributedTransactionPermission
System.Web.AspNetHostingPermission
System.Xaml.Permissions.XamlLoadPermission
[<AbstractClass>] [<SerializableAttribute>] [<ComVisibleAttribute(true)>] [<SecurityPermissionAttribute(SecurityAction.InheritanceDemand, ControlEvidence = true, ControlPolicy = true)>] type CodeAccessPermission = class interface IPermission interface ISecurityEncodable interface IStackWalk end
| Name | Description | |
|---|---|---|
![]() | CodeAccessPermission() | Initializes a new instance of the CodeAccessPermission class. |
| Name | Description | |
|---|---|---|
![]() | Assert() | Declares that the calling code can access the resource protected by a permission demand through the code that calls this method, even if callers higher in the stack have not been granted permission to access the resource. Using Assert can create security issues. |
![]() | Copy() | When implemented by a derived class, creates and returns an identical copy of the current permission object. |
![]() | Demand() | Forces a SecurityException at run time if all callers higher in the call stack have not been granted the permission specified by the current instance. |
![]() | Deny() | Obsolete. Prevents callers higher in the call stack from using the code that calls this method to access the resource specified by the current instance. |
![]() | Equals(Object) | Determines whether the specified CodeAccessPermission object is equal to the current CodeAccessPermission.(Overrides Object.Equals(Object).) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | FromXml(SecurityElement) | When overridden in a derived class, reconstructs a security object with a specified state from an XML encoding. |
![]() | GetHashCode() | Gets a hash code for the CodeAccessPermission object that is suitable for use in hashing algorithms and data structures such as a hash table.(Overrides Object.GetHashCode().) |
![]() | GetType() | |
![]() | Intersect(IPermission) | When implemented by a derived class, creates and returns a permission that is the intersection of the current permission and the specified permission. |
![]() | IsSubsetOf(IPermission) | When implemented by a derived class, determines whether the current permission is a subset of the specified permission. |
![]() | MemberwiseClone() | |
![]() | PermitOnly() | Prevents callers higher in the call stack from using the code that calls this method to access all resources except for the resource specified by the current instance. |
![]() ![]() | RevertAll() | Causes all previous overrides for the current frame to be removed and no longer in effect. |
![]() ![]() | RevertAssert() | Causes any previous Assert for the current frame to be removed and no longer in effect. |
![]() ![]() | RevertDeny() | Obsolete. Causes any previous Deny for the current frame to be removed and no longer in effect. |
![]() ![]() | RevertPermitOnly() | Causes any previous PermitOnly for the current frame to be removed and no longer in effect. |
![]() | ToString() | Creates and returns a string representation of the current permission object.(Overrides Object.ToString().) |
![]() | ToXml() | When overridden in a derived class, creates an XML encoding of the security object and its current state. |
![]() | Union(IPermission) | When overridden in a derived class, creates a permission that is the union of the current permission and the specified permission. |
Code access permissions use a stack walk to ensure that all callers of the code have been granted a permission. If a permission object is null, it is handled the same as a permission object with the state PermissionState.None.
The call stack is typically represented as growing down, so that methods higher in the call stack call methods lower in the call stack.
Inheritors of the CodeAccessPermission class must be granted full trust to function correctly as permissions extending the security infrastructure. To determine that the inheritors are fully trusted, CodeAccessPermission issues an InheritanceDemand for ControlEvidence = true and ControlPolicy = true.
Notes to Inheritors:
When you inherit from CodeAccessPermission, you must also implement the IUnrestrictedPermission interface.
The following CodeAccessPermission members must be overridden: Copy, Intersect, IsSubsetOf, ToXml, FromXml, and Union.
You must also define a constructor that takes a PermissionState as its only parameter.
You must apply the SerializableAttribute attribute to a class that inherits from CodeAccessPermission.
for the ability of inheritors to provide evidence and view and modify policy. Associated enumerations: SecurityPermissionFlag.ControlEvidence, SecurityPermissionFlag.ControlPolicy.
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


