2002-01-14 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / class / corlib / System.Security.Permissions / ReflectionPermissionFlag.cs
1 // ReflectionPermissionFlag.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:31:14 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         [Flags]
19         public enum ReflectionPermissionFlag {
20
21                 /// <summary>
22                 /// </summary>
23                 NoFlags = 0x00000000,
24
25                 /// <summary>
26                 /// </summary>
27                 TypeInformation = 0x00000001,
28
29                 /// <summary>
30                 /// </summary>
31                 MemberAccess = 0x00000002,
32
33                 /// <summary>
34                 /// </summary>
35                 AllFlags = TypeInformation | MemberAccess,
36         } // ReflectionPermissionFlag
37
38 } // System.Security.Permissions