mscorlib(4.0.0.0) API with additions
IPermission.cs
2 
3 namespace System.Security
4 {
6  [ComVisible(true)]
7  public interface IPermission : ISecurityEncodable
8  {
11  IPermission Copy();
12 
18 
24 
30  bool IsSubsetOf(IPermission target);
31 
33  void Demand();
34  }
35 }
Definition: __Canon.cs:3
IPermission Copy()
Creates and returns an identical copy of the current permission.
void Demand()
Throws a T:System.Security.SecurityException at run time if the security requirement is not met.
Defines the methods that convert permission object state to and from XML element representation.
IPermission Intersect(IPermission target)
Creates and returns a permission that is the intersection of the current permission and the specified...
Defines methods implemented by permission types.
Definition: IPermission.cs:7
bool IsSubsetOf(IPermission target)
Determines whether the current permission is a subset of the specified permission.
IPermission Union(IPermission target)
Creates a permission that is the union of the current permission and the specified permission.