Mono Class Library: System.Security.Permissions Namespace

System.Security.Permissions.SecurityAction Enumeration

Specifies security actions that can be performed using declarative security. [Edit]
[System.Runtime.InteropServices.ComVisible(true)]
public enum SecurityAction

Remarks

Note: For information about using declarative security and security actions, see Partition II of the CLI Specification.

Note:

Declarative security is specified using types derived from System.Security.Permissions.SecurityAttribute. The following table describes the attribute targets supported by each of the security actions.

Security actionAttribute Targets
AssertClass, Method
DemandClass, Method
DenyClass, Method
InheritanceDemandClass, Method
LinkDemandClass, Method
PermitOnlyClass, Method
RequestMinimumAssembly
RequestOptionalAssembly
RequestRefuseAssembly

For additional information on attribute targets, see Attribute.

[Edit]

Members

Member NameDescription
Assert

Specifies that callers of the code performing the assert need not have the permissions specified by the current security attribute, and that a check for any such permission can stop after the code that asserted it.

Note: An assert can change the default behavior of a security check (such as that caused by a Demand, LinkDemand, etc.).

This action can be applied to classes and methods.

Note: This action should only be used by code that can assure that its callers cannot manipulate it to abuse the asserted permission.

[Edit]
Demand

Specified that all callers are required to have the permissions specified by the current security attribute.

This action can be applied to classes and methods.

[Edit]
Deny

Specifies that access to the resource or operation described by the current security attribute be denied to callers, even if they have been granted permission to access it.

Note: SecurityAction.Deny causes a security check for the permissions specified by the current security attribute to fail even when it would otherwise succeed.

This action can be applied to classes and methods.

[Edit]
InheritanceDemand

Specifies the permissions that a derived class is required to have. When the target is a class, classes inheriting from the target are required to have the permissions specified by the current security attribute. When the target is a method, classes overriding the target are required to have the permissions specified by the current security attribute.

This action can be applied to classes and methods.

[Edit]
LinkDemand

Specifies that the immediate caller be required to have the specified permissions.

This action can be applied to classes and methods.

[Edit]
PermitOnly

Specifies that access is limited to only those resources or operations specified by the current security attribute, even if the code has been granted permission to access others. A security check for a permission not described by the current security attribute fails regardless of whether or not callers have been granted this permission.

This action can be applied to classes and methods.

[Edit]
RequestMinimum

Specifies that the current security attribute describes the minimum permissions required for an assembly to run.

This action can be applied to assemblies.

[Edit]
RequestOptional

Specifies that the current security attribute describes optional permissions that an assembly can be granted.

This action can be applied to assemblies.

[Edit]
RequestRefuse

Specifies that the current security attribute describes resources or operations that an assembly cannot access.

This action can be applied to assemblies.

[Edit]

Requirements

Namespace: System.Security.Permissions
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0