| 1234567891011121314151617181920212223242526272829303132 |
- //
- // System.Reflection.AssemblyDelaySignAttribute.cs
- //
- // Author: Duncan Mak <[email protected]>
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Reflection
- {
- [AttributeUsage (AttributeTargets.Assembly)]
- public sealed class AssemblyDelaySignAttribute : Attribute
- {
- // Field
- private bool delay;
-
- // Constructor
- public AssemblyDelaySignAttribute (bool delaySign)
- {
- delay = delaySign;
- }
- // Property
- public bool DelaySign
- {
- get { return delay; }
- }
- }
- }
-
|