Removed auto-generated comments.
[mono.git] / mcs / class / corlib / System.Reflection / MemberTypes.cs
1 // MemberTypes.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:38:53 UTC
7 // Source file: all.xml
8 // URL: http://devresource.hp.com/devresource/Docs/TechPapers/CSharp/all.xml
9 //
10 // (C) 2001 Ximian, Inc.  http://www.ximian.com
11
12
13 namespace System.Reflection {
14
15
16         /// <summary>
17         /// </summary>
18         public enum MemberTypes {
19
20                 /// <summary>
21                 /// </summary>
22                 Constructor = 1,
23
24                 /// <summary>
25                 /// </summary>
26                 Event = 2,
27
28                 /// <summary>
29                 /// </summary>
30                 Field = 4,
31
32                 /// <summary>
33                 /// </summary>
34                 Method = 8,
35
36                 /// <summary>
37                 /// </summary>
38                 Property = 16,
39
40                 /// <summary>
41                 /// </summary>
42                 TypeInfo = 32,
43
44                 /// <summary>
45                 /// </summary>
46                 Custom = 64,
47
48                 /// <summary>
49                 /// </summary>
50                 NestedType = 128,
51
52                 /// <summary>
53                 /// </summary>
54                 All = 191,
55         } // MemberTypes
56
57 } // System.Reflection