IStackWalk.cs 283 B

12345678910111213141516171819202122
  1. //
  2. // System.Security.IStackWalk.cs
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Security {
  10. public interface IStackWalk {
  11. void Assert ();
  12. void Demand ();
  13. void Deny ();
  14. void PermitOnly ();
  15. }
  16. }