mscorlib(4.0.0.0) API with additions
SecurityPermissionFlag.cs
2 
4 {
7  [Flags]
8  [ComVisible(true)]
10  {
12  NoFlags = 0x0,
14  Assertion = 0x1,
16  UnmanagedCode = 0x2,
18  SkipVerification = 0x4,
20  Execution = 0x8,
22  ControlThread = 0x10,
24  ControlEvidence = 0x20,
26  ControlPolicy = 0x40,
30  ControlDomainPolicy = 0x100,
32  ControlPrincipal = 0x200,
34  ControlAppDomain = 0x400,
36  RemotingConfiguration = 0x800,
38  Infrastructure = 0x1000,
40  BindingRedirects = 0x2000,
42  AllFlags = 0x3FFF
43  }
44 }
Ability to use certain advanced operations on threads.
Permission to perform explicit binding redirection in the application configuration file....
Definition: __Canon.cs:3
Ability to provide serialization services. Used by serialization formatters.
Permission to configure Remoting types and channels.
Permission for the code to run. Without this permission, managed code will not be executed.
Ability to provide evidence, including the ability to alter the evidence provided by the common langu...
Ability to create and manipulate an T:System.AppDomain.
Use all security policy components.
Specifies that the class can be serialized.
Permission to plug code into the common language runtime infrastructure, such as adding Remoting Cont...
Ability to assert that all this code's callers have the requisite permission for the operation.
SecurityPermissionFlag
Specifies access flags for the security permission object.