1 // ==++==
2 //
3 //   Copyright (c) Microsoft Corporation.  All rights reserved.
4 //
5 // ==--==
6 // IStackWalk.cs
7 //
8 // <OWNER>ShawnFa</OWNER>
9 //
10 
11 namespace System.Security
12 {
13 
14 [System.Runtime.InteropServices.ComVisible(true)]
15     public interface IStackWalk
16     {
17         [DynamicSecurityMethodAttribute()]
Assert()18         void Assert();
19 
20         [DynamicSecurityMethodAttribute()]
Demand()21         void Demand();
22 
23         [DynamicSecurityMethodAttribute()]
Deny()24         void Deny();
25 
26         [DynamicSecurityMethodAttribute()]
PermitOnly()27         void PermitOnly();
28     }
29 }
30