36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Reflection
|
|
{
|
|
/// <summary>Specifies that the assembly is not fully signed when created.</summary>
|
|
// Token: 0x02000227 RID: 551
|
|
[ComVisible(true)]
|
|
[AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
|
|
public sealed class AssemblyDelaySignAttribute : Attribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.AssemblyDelaySignAttribute" /> class.</summary>
|
|
/// <param name="delaySign">true if the feature this attribute represents is activated; otherwise, false. </param>
|
|
// Token: 0x06001D69 RID: 7529 RVA: 0x0006E138 File Offset: 0x0006C338
|
|
public AssemblyDelaySignAttribute(bool delaySign)
|
|
{
|
|
this.delay = delaySign;
|
|
}
|
|
|
|
/// <summary>Gets a value indicating the state of the attribute.</summary>
|
|
/// <returns>true if this assembly has been built as delay-signed; otherwise, false.</returns>
|
|
// 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;
|
|
}
|
|
}
|