| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- // SecurityAction.cs
- //
- // This code was automatically generated from
- // ECMA CLI XML Library Specification.
- // Generator: libgen.xsl [1.0; (C) Sergey Chaban ([email protected])]
- // Created: Wed, 5 Sep 2001 06:29:52 UTC
- // Source file: AllTypes.xml
- // URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
- //
- // (C) 2001 Ximian, Inc. http://www.ximian.com
- namespace System.Security.Permissions {
- /// <summary>
- /// </summary>
- public enum SecurityAction {
- /// <summary>
- /// </summary>
- Demand = 2,
- /// <summary>
- /// </summary>
- Assert = 3,
- /// <summary>
- /// </summary>
- Deny = 4,
- /// <summary>
- /// </summary>
- PermitOnly = 5,
- /// <summary>
- /// </summary>
- LinkDemand = 6,
- /// <summary>
- /// </summary>
- InheritanceDemand = 7,
- /// <summary>
- /// </summary>
- RequestMinimum = 8,
- /// <summary>
- /// </summary>
- RequestOptional = 9,
- /// <summary>
- /// </summary>
- RequestRefuse = 10,
- } // SecurityAction
- } // System.Security.Permissions
|