mscorlib(4.0.0.0) API with additions
IStackWalk.cs
2 
3 namespace System.Security
4 {
6  [ComVisible(true)]
7  public interface IStackWalk
8  {
11  void Assert();
12 
15  void Demand();
16 
18  void Deny();
19 
21  void PermitOnly();
22  }
23 }
void Demand()
Determines at run time whether all callers in the call stack have been granted the permission specifi...
Definition: __Canon.cs:3
void Assert()
Asserts that the calling code can access the resource identified by the current permission object,...
void Deny()
Causes every M:System.Security.IStackWalk.Demand for the current object that passes through the calli...
Manages the stack walk that determines whether all callers in the call stack have the required permis...
Definition: IStackWalk.cs:7
void PermitOnly()
Causes every M:System.Security.IStackWalk.Demand for all objects except the current one that passes t...