using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Specifies the installer for a type that installs components.
// Token: 0x0200014A RID: 330
[Token(Token = "0x200014A")]
[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: 0x060007FB RID: 2043 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60007FB")]
[Address(RVA = "0x4DA7C0", Offset = "0x4D95C0", VA = "0x1804DA7C0")]
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: 0x060007FC RID: 2044 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60007FC")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
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: 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;
}
}
/// 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: 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);
}
/// Returns the hashcode for this object.
/// A hash code for the current .
// 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;
}
}