Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / class / referencesource / mscorlib / system / security / istackwalk.cs
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()]
18         void Assert();
19         
20         [DynamicSecurityMethodAttribute()]
21         void Demand();
22         
23         [DynamicSecurityMethodAttribute()]
24         void Deny();
25         
26         [DynamicSecurityMethodAttribute()]
27         void PermitOnly();
28     }
29 }