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: 0x02000187 RID: 391
[Token(Token = "0x2000187")]
[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: 0x06000A5F RID: 2655 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A5F")]
[Address(RVA = "0x49E320", Offset = "0x49D120", VA = "0x18049E320")]
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: 0x17000209 RID: 521
// (get) Token: 0x06000A60 RID: 2656 RVA: 0x00006150 File Offset: 0x00004350
[Token(Token = "0x17000209")]
public bool RunInstaller
{
[Token(Token = "0x6000A60")]
[Address(RVA = "0x42D5E0", Offset = "0x42C3E0", VA = "0x18042D5E0")]
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: 0x06000A61 RID: 2657 RVA: 0x00006168 File Offset: 0x00004368
[Token(Token = "0x6000A61")]
[Address(RVA = "0x4D83D0", Offset = "0x4D71D0", VA = "0x1804D83D0", 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: 0x06000A62 RID: 2658 RVA: 0x00006180 File Offset: 0x00004380
[Token(Token = "0x6000A62")]
[Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", 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: 0x06000A63 RID: 2659 RVA: 0x00006198 File Offset: 0x00004398
[Token(Token = "0x6000A63")]
[Address(RVA = "0x4D8480", Offset = "0x4D7280", VA = "0x1804D8480", Slot = "6")]
public override bool IsDefaultAttribute()
{
return default(bool);
}
// Token: 0x040005E9 RID: 1513
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40005E9")]
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: 0x040005EA RID: 1514
[Token(Token = "0x40005EA")]
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: 0x040005EB RID: 1515
[Token(Token = "0x40005EB")]
public static readonly RunInstallerAttribute No;
/// Specifies the default visiblity, which is . This field is read-only.
// Token: 0x040005EC RID: 1516
[Token(Token = "0x40005EC")]
public static readonly RunInstallerAttribute Default;
}
}