Added piles of new enumerations from Sergey.
[mono.git] / mcs / class / corlib / System.Reflection / ResourceLocation.cs
1 // ResourceLocation.cs\r
2 //\r
3 // This code was automatically generated from\r
4 // ECMA CLI XML Library Specification.\r
5 // Generator: libgen.xsl\r
6 // Source file: all.xml\r
7 // URL: http://devresource.hp.com/devresource/Docs/TechPapers/CSharp/all.xml\r
8 //\r
9 // (C) 2001 Ximian, Inc.  http://www.ximian.com\r
10 \r
11 \r
12 namespace System.Reflection {\r
13 \r
14 \r
15         /// <summary>\r
16         /// <para>Specifies the resource location.</para>\r
17         /// </summary>\r
18         [Flags]\r
19         public enum ResourceLocation {\r
20 \r
21                 /// <summary>\r
22                 /// <para>Specifies an embedded (that is, non-linked) resource.</para>\r
23                 /// </summary>\r
24                 Embedded = 1,\r
25 \r
26                 /// <summary>\r
27                 /// <para>Specifies that the resource is contained in another assembly.</para>\r
28                 /// </summary>\r
29                 ContainedInAnotherAssembly = 2,\r
30 \r
31                 /// <summary>\r
32                 /// <para>Specifies that the resource is contained in the manifest file.</para>\r
33                 /// </summary>\r
34                 ContainedInManifestFile = 4,\r
35         } // ResourceLocation\r
36 \r
37 } // System.Reflection\r