2002-01-14 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / class / corlib / System.Security.Permissions / SecurityAction.cs
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 (serge@wildwestsoftware.com)]
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
12
13 namespace System.Security.Permissions {
14
15
16         /// <summary>
17         /// </summary>
18         public enum SecurityAction {
19
20                 /// <summary>
21                 /// </summary>
22                 Demand = 2,
23
24                 /// <summary>
25                 /// </summary>
26                 Assert = 3,
27
28                 /// <summary>
29                 /// </summary>
30                 Deny = 4,
31
32                 /// <summary>
33                 /// </summary>
34                 PermitOnly = 5,
35
36                 /// <summary>
37                 /// </summary>
38                 LinkDemand = 6,
39
40                 /// <summary>
41                 /// </summary>
42                 InheritanceDemand = 7,
43
44                 /// <summary>
45                 /// </summary>
46                 RequestMinimum = 8,
47
48                 /// <summary>
49                 /// </summary>
50                 RequestOptional = 9,
51
52                 /// <summary>
53                 /// </summary>
54                 RequestRefuse = 10,
55         } // SecurityAction
56
57 } // System.Security.Permissions