| 12345678910111213141516171819202122 |
- //
- // System.Security.IStackWalk.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Security {
- public interface IStackWalk {
- void Assert ();
- void Demand ();
- void Deny ();
- void PermitOnly ();
- }
- }
|