SecurityAction.cs 999 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // SecurityAction.cs
  2. //
  3. // This code was automatically generated from
  4. // ECMA CLI XML Library Specification.
  5. // Generator: libgen.xsl [1.0; (C) Sergey Chaban ([email protected])]
  6. // Created: Wed, 5 Sep 2001 06:29:52 UTC
  7. // Source file: AllTypes.xml
  8. // URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
  9. //
  10. // (C) 2001 Ximian, Inc. http://www.ximian.com
  11. namespace System.Security.Permissions {
  12. /// <summary>
  13. /// </summary>
  14. public enum SecurityAction {
  15. /// <summary>
  16. /// </summary>
  17. Demand = 2,
  18. /// <summary>
  19. /// </summary>
  20. Assert = 3,
  21. /// <summary>
  22. /// </summary>
  23. Deny = 4,
  24. /// <summary>
  25. /// </summary>
  26. PermitOnly = 5,
  27. /// <summary>
  28. /// </summary>
  29. LinkDemand = 6,
  30. /// <summary>
  31. /// </summary>
  32. InheritanceDemand = 7,
  33. /// <summary>
  34. /// </summary>
  35. RequestMinimum = 8,
  36. /// <summary>
  37. /// </summary>
  38. RequestOptional = 9,
  39. /// <summary>
  40. /// </summary>
  41. RequestRefuse = 10,
  42. } // SecurityAction
  43. } // System.Security.Permissions