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: 0x02000183 RID: 387
|
|
[Token(Token = "0x2000183")]
|
|
[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: 0x06000A49 RID: 2633 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000A49")]
|
|
[Address(RVA = "0xB9AFE0", Offset = "0xB99FE0", VA = "0x180B9AFE0")]
|
|
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: 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);
|
|
}
|
|
}
|
|
|
|
/// <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: 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);
|
|
}
|
|
|
|
/// <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: 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;
|
|
}
|
|
|
|
/// <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: 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;
|
|
|
|
/// <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: 0x040005DD RID: 1501
|
|
[Token(Token = "0x40005DD")]
|
|
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: 0x040005DE RID: 1502
|
|
[Token(Token = "0x40005DE")]
|
|
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: 0x040005DF RID: 1503
|
|
[Token(Token = "0x40005DF")]
|
|
public static readonly RunInstallerAttribute Default;
|
|
}
|
|
}
|