92 lines
4.4 KiB
C#
92 lines
4.4 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Specifies whether the Visual Studio Custom Action Installer or the Installutil.exe (Installer Tool) should be invoked when the assembly is installed.</summary>
|
|
// Token: 0x02000187 RID: 391
|
|
[Token(Token = "0x2000187")]
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class RunInstallerAttribute : Attribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.RunInstallerAttribute" /> class.</summary>
|
|
/// <param name="runInstaller">
|
|
/// <see langword="true" /> if an installer should be invoked during installation of an assembly; otherwise, <see langword="false" />.</param>
|
|
// Token: 0x06000A5F RID: 2655 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000A5F")]
|
|
[Address(RVA = "0x49E320", Offset = "0x49D120", VA = "0x18049E320")]
|
|
public RunInstallerAttribute(bool runInstaller)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets a value indicating whether an installer should be invoked during installation of an assembly.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if an installer should be invoked during installation of an assembly; otherwise, <see langword="false" />.</returns>
|
|
// 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);
|
|
}
|
|
}
|
|
|
|
/// <summary>Determines whether the value of the specified <see cref="T:System.ComponentModel.RunInstallerAttribute" /> is equivalent to the current <see cref="T:System.ComponentModel.RunInstallerAttribute" />.</summary>
|
|
/// <param name="obj">The object to compare.</param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the specified <see cref="T:System.ComponentModel.RunInstallerAttribute" /> is equal to the current <see cref="T:System.ComponentModel.RunInstallerAttribute" />; otherwise, <see langword="false" />.</returns>
|
|
// 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);
|
|
}
|
|
|
|
/// <summary>Generates a hash code for the current <see cref="T:System.ComponentModel.RunInstallerAttribute" />.</summary>
|
|
/// <returns>A hash code for the current <see cref="T:System.ComponentModel.RunInstallerAttribute" />.</returns>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>Determines if this attribute is the default.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the attribute is the default value for this attribute class; otherwise, <see langword="false" />.</returns>
|
|
// 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;
|
|
|
|
/// <summary>Specifies that the Visual Studio Custom Action Installer or the Installutil.exe (Installer Tool) should be invoked when the assembly is installed. This <see langword="static" /> field is read-only.</summary>
|
|
// Token: 0x040005EA RID: 1514
|
|
[Token(Token = "0x40005EA")]
|
|
public static readonly RunInstallerAttribute Yes;
|
|
|
|
/// <summary>Specifies that the Visual Studio Custom Action Installer or the Installutil.exe (Installer Tool) should not be invoked when the assembly is installed. This <see langword="static" /> field is read-only.</summary>
|
|
// Token: 0x040005EB RID: 1515
|
|
[Token(Token = "0x40005EB")]
|
|
public static readonly RunInstallerAttribute No;
|
|
|
|
/// <summary>Specifies the default visiblity, which is <see cref="F:System.ComponentModel.RunInstallerAttribute.No" />. This <see langword="static" /> field is read-only.</summary>
|
|
// Token: 0x040005EC RID: 1516
|
|
[Token(Token = "0x40005EC")]
|
|
public static readonly RunInstallerAttribute Default;
|
|
}
|
|
}
|