AssemblyNameFlags.cs 772 B

123456789101112131415161718192021222324252627282930313233
  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 ([email protected])]
  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. namespace System.Reflection {
  12. /// <summary>
  13. /// </summary>
  14. [Flags]
  15. [Serializable]
  16. public enum AssemblyNameFlags {
  17. /// <summary>
  18. /// </summary>
  19. None = 0,
  20. /// <summary>
  21. /// Not sure about the ECMA spec, but this is what is in mscorlib...
  22. /// Perhaps this has changed since the beta.
  23. /// </summary>
  24. PublicKey = 1,
  25. } // AssemblyNameFlags
  26. } // System.Reflection