2003-12-17 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / corlib / System.Reflection / AssemblyNameFlags.cs
1 // AssemblyNameFlags.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:33 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         [Flags]
19         [Serializable]
20         public enum AssemblyNameFlags {
21
22                 /// <summary>
23                 /// </summary>
24                 None = 0,
25
26                 /// <summary>
27                 ///  Not sure about the ECMA spec, but this is what is in mscorlib...
28                 ///  Perhaps this has changed since the beta.
29                 /// </summary>
30                 PublicKey = 1,
31
32 #if NET_1_1
33                 Retargetable = 256
34 #endif
35         } // AssemblyNameFlags
36
37 } // System.Reflection