ResourceLocation.cs 719 B

12345678910111213141516171819202122232425262728293031323334
  1. // ResourceLocation.cs
  2. //
  3. // This code was automatically generated from
  4. // ECMA CLI XML Library Specification.
  5. // Generator: libgen.xsl [1.0; (C) Sergey Chaban ([email protected])]
  6. // Created: Wed, 5 Sep 2001 06:39:22 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. namespace System.Reflection {
  12. /// <summary>
  13. /// </summary>
  14. [Flags]
  15. public enum ResourceLocation {
  16. /// <summary>
  17. /// </summary>
  18. Embedded = 1,
  19. /// <summary>
  20. /// </summary>
  21. ContainedInAnotherAssembly = 2,
  22. /// <summary>
  23. /// </summary>
  24. ContainedInManifestFile = 4,
  25. } // ResourceLocation
  26. } // System.Reflection