using System; using System.Runtime.InteropServices; namespace System.Reflection { /// Specifies that the assembly is not fully signed when created. // Token: 0x02000227 RID: 551 [ComVisible(true)] [AttributeUsage(AttributeTargets.Assembly, Inherited = false)] public sealed class AssemblyDelaySignAttribute : Attribute { /// Initializes a new instance of the class. /// true if the feature this attribute represents is activated; otherwise, false. // Token: 0x06001D69 RID: 7529 RVA: 0x0006E138 File Offset: 0x0006C338 public AssemblyDelaySignAttribute(bool delaySign) { this.delay = delaySign; } /// Gets a value indicating the state of the attribute. /// true if this assembly has been built as delay-signed; otherwise, false. // Token: 0x17000545 RID: 1349 // (get) Token: 0x06001D6A RID: 7530 RVA: 0x0006E148 File Offset: 0x0006C348 public bool DelaySign { get { return this.delay; } } // Token: 0x040009E4 RID: 2532 private bool delay; } }