Files
Aug2021-Cpp2IL-Dump/System/ComponentModel/InstallerTypeAttribute.cs
T
2026-04-10 22:50:51 +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: 0x0200014A RID: 330
[Token(Token = "0x200014A")]
[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: 0x060007FB RID: 2043 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60007FB")]
[Address(RVA = "0x4DA7C0", Offset = "0x4D95C0", VA = "0x1804DA7C0")]
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: 0x060007FC RID: 2044 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60007FC")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
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: 0x17000181 RID: 385
// (get) Token: 0x060007FD RID: 2045 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000181")]
public virtual Type InstallerType
{
[Token(Token = "0x60007FD")]
[Address(RVA = "0x4EE4D0", Offset = "0x4ED2D0", VA = "0x1804EE4D0", 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: 0x060007FE RID: 2046 RVA: 0x00005010 File Offset: 0x00003210
[Token(Token = "0x60007FE")]
[Address(RVA = "0x4EE420", Offset = "0x4ED220", VA = "0x1804EE420", 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: 0x060007FF RID: 2047 RVA: 0x00005028 File Offset: 0x00003228
[Token(Token = "0x60007FF")]
[Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x040004F8 RID: 1272
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40004F8")]
private string _typeName;
}
}