Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

73 lines
3.4 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies the installer for a type that installs components.</summary>
// Token: 0x02000146 RID: 326
[Token(Token = "0x2000146")]
[AttributeUsage(AttributeTargets.Class)]
public class InstallerTypeAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.InstallerTypeAttribute" /> class, when given a <see cref="T:System.Type" /> that represents the installer for a component.</summary>
/// <param name="installerType">A <see cref="T:System.Type" /> that represents the installer for the component this attribute is bound to. This class must implement <see cref="T:System.ComponentModel.Design.IDesigner" />.</param>
// Token: 0x060007E5 RID: 2021 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60007E5")]
[Address(RVA = "0xC2A140", Offset = "0xC29140", VA = "0x180C2A140")]
public InstallerTypeAttribute(Type installerType)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.InstallerTypeAttribute" /> class with the name of the component's installer type.</summary>
/// <param name="typeName">The name of a <see cref="T:System.Type" /> that represents the installer for the component this attribute is bound to. This class must implement <see cref="T:System.ComponentModel.Design.IDesigner" />.</param>
// Token: 0x060007E6 RID: 2022 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60007E6")]
[Address(RVA = "0x681CA0", Offset = "0x680CA0", VA = "0x180681CA0")]
public InstallerTypeAttribute(string typeName)
{
}
/// <summary>Gets the type of installer associated with this attribute.</summary>
/// <returns>A <see cref="T:System.Type" /> that represents the type of installer associated with this attribute, or <see langword="null" /> if an installer does not exist.</returns>
// Token: 0x1700017D RID: 381
// (get) Token: 0x060007E7 RID: 2023 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700017D")]
public virtual Type InstallerType
{
[Token(Token = "0x60007E7")]
[Address(RVA = "0xC588D0", Offset = "0xC578D0", VA = "0x180C588D0", Slot = "7")]
get
{
return null;
}
}
/// <summary>Returns whether the value of the given object is equal to the current <see cref="T:System.ComponentModel.InstallerTypeAttribute" />.</summary>
/// <param name="obj">The object to test the value equality of.</param>
/// <returns>
/// <see langword="true" /> if the value of the given object is equal to that of the current; otherwise, <see langword="false" />.</returns>
// Token: 0x060007E8 RID: 2024 RVA: 0x00004FF8 File Offset: 0x000031F8
[Token(Token = "0x60007E8")]
[Address(RVA = "0xC58820", Offset = "0xC57820", VA = "0x180C58820", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns the hashcode for this object.</summary>
/// <returns>A hash code for the current <see cref="T:System.ComponentModel.InstallerTypeAttribute" />.</returns>
// Token: 0x060007E9 RID: 2025 RVA: 0x00005010 File Offset: 0x00003210
[Token(Token = "0x60007E9")]
[Address(RVA = "0xB8D310", Offset = "0xB8C310", VA = "0x180B8D310", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x040004EB RID: 1259
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40004EB")]
private string _typeName;
}
}