using System; using Cpp2IlInjected; namespace System.Runtime.CompilerServices { /// Specifies that types that are ordinarily visible only within the current assembly are visible to a specified assembly. // Token: 0x02000559 RID: 1369 [Token(Token = "0x2000559")] [AttributeUsage(AttributeTargets.Assembly)] public sealed class InternalsVisibleToAttribute : Attribute { /// Initializes a new instance of the class with the name of the specified friend assembly. /// The name of a friend assembly. // Token: 0x06002A71 RID: 10865 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002A71")] [Address(RVA = "0x294D510", Offset = "0x294C310", VA = "0x18294D510")] public InternalsVisibleToAttribute(string assemblyName) { } /// Gets the name of the friend assembly to which all types and type members that are marked with the keyword are to be made visible. /// A string that represents the name of the friend assembly. // Token: 0x1700064C RID: 1612 // (get) Token: 0x06002A72 RID: 10866 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x1700064C")] public string AssemblyName { [Token(Token = "0x6002A72")] [Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")] get { return null; } } /// This property is not implemented. /// This property does not return a value. // Token: 0x1700064D RID: 1613 // (get) Token: 0x06002A73 RID: 10867 RVA: 0x00016920 File Offset: 0x00014B20 // (set) Token: 0x06002A74 RID: 10868 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700064D")] public bool AllInternalsVisible { [Token(Token = "0x6002A73")] [Address(RVA = "0x42C2C0", Offset = "0x42B0C0", VA = "0x18042C2C0")] get { return default(bool); } [Token(Token = "0x6002A74")] [Address(RVA = "0x43DE90", Offset = "0x43CC90", VA = "0x18043DE90")] set { } } // Token: 0x0400189C RID: 6300 [FieldOffset(Offset = "0x10")] [Token(Token = "0x400189C")] private string _assemblyName; // Token: 0x0400189D RID: 6301 [FieldOffset(Offset = "0x18")] [Token(Token = "0x400189D")] private bool _allInternalsVisible; } }