using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Specifies the installer for a type that installs components.
// Token: 0x02000146 RID: 326
[Token(Token = "0x2000146")]
[AttributeUsage(AttributeTargets.Class)]
public class InstallerTypeAttribute : Attribute
{
/// Initializes a new instance of the class, when given a that represents the installer for a component.
/// A that represents the installer for the component this attribute is bound to. This class must implement .
// Token: 0x060007E5 RID: 2021 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60007E5")]
[Address(RVA = "0xC2A140", Offset = "0xC29140", VA = "0x180C2A140")]
public InstallerTypeAttribute(Type installerType)
{
}
/// Initializes a new instance of the class with the name of the component's installer type.
/// The name of a that represents the installer for the component this attribute is bound to. This class must implement .
// Token: 0x060007E6 RID: 2022 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60007E6")]
[Address(RVA = "0x681CA0", Offset = "0x680CA0", VA = "0x180681CA0")]
public InstallerTypeAttribute(string typeName)
{
}
/// Gets the type of installer associated with this attribute.
/// A that represents the type of installer associated with this attribute, or if an installer does not exist.
// 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;
}
}
/// Returns whether the value of the given object is equal to the current .
/// The object to test the value equality of.
///
/// if the value of the given object is equal to that of the current; otherwise, .
// 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);
}
/// Returns the hashcode for this object.
/// A hash code for the current .
// 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;
}
}