AssemblyDelaySignAttribute.cs 510 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // System.Reflection.AssemblyDelaySignAttribute.cs
  3. //
  4. // Author: Duncan Mak <[email protected]>
  5. //
  6. // (C) Ximian, Inc. http://www.ximian.com
  7. //
  8. namespace System.Reflection
  9. {
  10. [AttributeUsage (AttributeTargets.Assembly)]
  11. public sealed class AssemblyDelaySignAttribute : Attribute
  12. {
  13. // Field
  14. private bool delay;
  15. // Constructor
  16. public AssemblyDelaySignAttribute (bool delaySign)
  17. {
  18. delay = delaySign;
  19. }
  20. // Property
  21. public bool DelaySign
  22. {
  23. get { return delay; }
  24. }
  25. }
  26. }