Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

30 lines
1.0 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Reflection
{
/// <summary>Specifies that the assembly is not fully signed when created.</summary>
// Token: 0x02000217 RID: 535
[Token(Token = "0x2000217")]
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Assembly)]
public sealed class AssemblyDelaySignAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.AssemblyDelaySignAttribute" /> class.</summary>
/// <param name="delaySign">
/// <see langword="true" /> if the feature this attribute represents is activated; otherwise, <see langword="false" />.</param>
// Token: 0x06001401 RID: 5121 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001401")]
[Address(RVA = "0xB9AFE0", Offset = "0xB99FE0", VA = "0x180B9AFE0")]
public AssemblyDelaySignAttribute(bool delaySign)
{
}
// Token: 0x04000A1D RID: 2589
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000A1D")]
private bool m_delaySign;
}
}