using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Specifies whether the Visual Studio Custom Action Installer or the Installutil.exe (Installer Tool) should be invoked when the assembly is installed. // Token: 0x02000183 RID: 387 [Token(Token = "0x2000183")] [AttributeUsage(AttributeTargets.Class)] public class RunInstallerAttribute : Attribute { /// Initializes a new instance of the class. /// /// if an installer should be invoked during installation of an assembly; otherwise, . // Token: 0x06000A49 RID: 2633 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000A49")] [Address(RVA = "0xB9AFE0", Offset = "0xB99FE0", VA = "0x180B9AFE0")] public RunInstallerAttribute(bool runInstaller) { } /// Gets a value indicating whether an installer should be invoked during installation of an assembly. /// /// if an installer should be invoked during installation of an assembly; otherwise, . // Token: 0x17000205 RID: 517 // (get) Token: 0x06000A4A RID: 2634 RVA: 0x00006138 File Offset: 0x00004338 [Token(Token = "0x17000205")] public bool RunInstaller { [Token(Token = "0x6000A4A")] [Address(RVA = "0x4944B0", Offset = "0x4934B0", VA = "0x1804944B0")] get { return default(bool); } } /// Determines whether the value of the specified is equivalent to the current . /// The object to compare. /// /// if the specified is equal to the current ; otherwise, . // Token: 0x06000A4B RID: 2635 RVA: 0x00006150 File Offset: 0x00004350 [Token(Token = "0x6000A4B")] [Address(RVA = "0xC27DB0", Offset = "0xC26DB0", VA = "0x180C27DB0", Slot = "0")] public override bool Equals(object obj) { return default(bool); } /// Generates a hash code for the current . /// A hash code for the current . // Token: 0x06000A4C RID: 2636 RVA: 0x00006168 File Offset: 0x00004368 [Token(Token = "0x6000A4C")] [Address(RVA = "0xB8D310", Offset = "0xB8C310", VA = "0x180B8D310", Slot = "2")] public override int GetHashCode() { return 0; } /// Determines if this attribute is the default. /// /// if the attribute is the default value for this attribute class; otherwise, . // Token: 0x06000A4D RID: 2637 RVA: 0x00006180 File Offset: 0x00004380 [Token(Token = "0x6000A4D")] [Address(RVA = "0xC27E60", Offset = "0xC26E60", VA = "0x180C27E60", Slot = "6")] public override bool IsDefaultAttribute() { return default(bool); } // Token: 0x040005DC RID: 1500 [FieldOffset(Offset = "0x10")] [Token(Token = "0x40005DC")] private bool runInstaller; /// Specifies that the Visual Studio Custom Action Installer or the Installutil.exe (Installer Tool) should be invoked when the assembly is installed. This field is read-only. // Token: 0x040005DD RID: 1501 [Token(Token = "0x40005DD")] public static readonly RunInstallerAttribute Yes; /// Specifies that the Visual Studio Custom Action Installer or the Installutil.exe (Installer Tool) should not be invoked when the assembly is installed. This field is read-only. // Token: 0x040005DE RID: 1502 [Token(Token = "0x40005DE")] public static readonly RunInstallerAttribute No; /// Specifies the default visiblity, which is . This field is read-only. // Token: 0x040005DF RID: 1503 [Token(Token = "0x40005DF")] public static readonly RunInstallerAttribute Default; } }