Files
2026-04-10 22:50:51 +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: 0x02000210 RID: 528
[Token(Token = "0x2000210")]
[AttributeUsage(AttributeTargets.Assembly)]
[ComVisible(true)]
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: 0x060013C3 RID: 5059 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60013C3")]
[Address(RVA = "0x49E320", Offset = "0x49D120", VA = "0x18049E320")]
public AssemblyDelaySignAttribute(bool delaySign)
{
}
// Token: 0x04000A13 RID: 2579
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000A13")]
private bool m_delaySign;
}
}