2002-06-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / corlib / System.Security / IStackWalk.cs
1 //
2 // System.Security.IStackWalk.cs
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) Ximian, Inc. http://www.ximian.com
8 //
9
10 namespace System.Security {
11
12         public interface IStackWalk {
13
14                 void Assert ();
15
16                 void Demand ();
17
18                 void Deny ();
19
20                 void PermitOnly ();
21         }
22 }