29 lines
1.1 KiB
C#
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: 0x0200020F RID: 527
|
|
[Token(Token = "0x200020F")]
|
|
[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: 0x060013C2 RID: 5058 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60013C2")]
|
|
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
|
|
public AssemblyKeyFileAttribute(string keyFile)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04000A12 RID: 2578
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x4000A12")]
|
|
private string m_keyFile;
|
|
}
|
|
}
|