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

29 lines
1.1 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Reflection
{
/// <summary>Specifies the name of a file containing the key pair used to generate a strong name.</summary>
// Token: 0x02000216 RID: 534
[Token(Token = "0x2000216")]
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Assembly)]
public sealed class AssemblyKeyFileAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see langword="AssemblyKeyFileAttribute" /> class with the name of the file containing the key pair to generate a strong name for the assembly being attributed.</summary>
/// <param name="keyFile">The name of the file containing the key pair.</param>
// Token: 0x06001400 RID: 5120 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001400")]
[Address(RVA = "0x681CA0", Offset = "0x680CA0", VA = "0x180681CA0")]
public AssemblyKeyFileAttribute(string keyFile)
{
}
// Token: 0x04000A1C RID: 2588
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000A1C")]
private string m_keyFile;
}
}