/Mono.Cecil/ManifestResourceAttributes.cs

http://github.com/jbevain/cecil · C# · 21 lines · 9 code · 3 blank · 9 comment · 0 complexity · 34ee2aa8af83a50a5325e7e08c64c02f MD5 · raw file

  1. //
  2. // Author:
  3. // Jb Evain (jbevain@gmail.com)
  4. //
  5. // Copyright (c) 2008 - 2015 Jb Evain
  6. // Copyright (c) 2008 - 2011 Novell, Inc.
  7. //
  8. // Licensed under the MIT/X11 license.
  9. //
  10. using System;
  11. namespace Mono.Cecil {
  12. [Flags]
  13. public enum ManifestResourceAttributes : uint {
  14. VisibilityMask = 0x0007,
  15. Public = 0x0001, // The resource is exported from the Assembly
  16. Private = 0x0002 // The resource is private to the Assembly
  17. }
  18. }