using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Specifies the class used to implement design-time services for a component.
// Token: 0x02000118 RID: 280
[Token(Token = "0x2000118")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface)]
public sealed class DesignerAttribute : Attribute
{
/// Initializes a new instance of the class using the name of the type that provides design-time services.
/// The concatenation of the fully qualified name of the type that provides design-time services for the component this attribute is bound to, and the name of the assembly this type resides in.
// Token: 0x060006E4 RID: 1764 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006E4")]
[Address(RVA = "0x4E8740", Offset = "0x4E7540", VA = "0x1804E8740")]
public DesignerAttribute(string designerTypeName)
{
}
/// Initializes a new instance of the class using the type that provides design-time services.
/// A that represents the class that provides design-time services for the component this attribute is bound to.
// Token: 0x060006E5 RID: 1765 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006E5")]
[Address(RVA = "0x4E85E0", Offset = "0x4E73E0", VA = "0x1804E85E0")]
public DesignerAttribute(Type designerType)
{
}
/// Initializes a new instance of the class using the designer type and the base class for the designer.
/// The concatenation of the fully qualified name of the type that provides design-time services for the component this attribute is bound to, and the name of the assembly this type resides in.
/// The fully qualified name of the base class to associate with the designer class.
// Token: 0x060006E6 RID: 1766 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006E6")]
[Address(RVA = "0x4E8810", Offset = "0x4E7610", VA = "0x1804E8810")]
public DesignerAttribute(string designerTypeName, string designerBaseTypeName)
{
}
/// Initializes a new instance of the class, using the name of the designer class and the base class for the designer.
/// The concatenation of the fully qualified name of the type that provides design-time services for the component this attribute is bound to, and the name of the assembly this type resides in.
/// A that represents the base class to associate with the .
// Token: 0x060006E7 RID: 1767 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006E7")]
[Address(RVA = "0x4E8690", Offset = "0x4E7490", VA = "0x1804E8690")]
public DesignerAttribute(string designerTypeName, Type designerBaseType)
{
}
/// Initializes a new instance of the class using the types of the designer and designer base class.
/// A that represents the class that provides design-time services for the component this attribute is bound to.
/// A that represents the base class to associate with the .
// Token: 0x060006E8 RID: 1768 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006E8")]
[Address(RVA = "0x4E88B0", Offset = "0x4E76B0", VA = "0x1804E88B0")]
public DesignerAttribute(Type designerType, Type designerBaseType)
{
}
/// Gets the name of the base type of this designer.
/// The name of the base type of this designer.
// Token: 0x17000136 RID: 310
// (get) Token: 0x060006E9 RID: 1769 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000136")]
public string DesignerBaseTypeName
{
[Token(Token = "0x60006E9")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
get
{
return null;
}
}
/// Gets the name of the designer type associated with this designer attribute.
/// The name of the designer type associated with this designer attribute.
// Token: 0x17000137 RID: 311
// (get) Token: 0x060006EA RID: 1770 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000137")]
public string DesignerTypeName
{
[Token(Token = "0x60006EA")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
/// Gets a unique ID for this attribute type.
/// A unique ID for this attribute type.
// Token: 0x17000138 RID: 312
// (get) Token: 0x060006EB RID: 1771 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000138")]
public override object TypeId
{
[Token(Token = "0x60006EB")]
[Address(RVA = "0x4E8920", Offset = "0x4E7720", VA = "0x1804E8920", Slot = "4")]
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: 0x060006EC RID: 1772 RVA: 0x00004B90 File Offset: 0x00002D90
[Token(Token = "0x60006EC")]
[Address(RVA = "0x4E8530", Offset = "0x4E7330", VA = "0x1804E8530", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// Returns the hash code for this instance.
/// A 32-bit signed integer hash code.
// Token: 0x060006ED RID: 1773 RVA: 0x00004BA8 File Offset: 0x00002DA8
[Token(Token = "0x60006ED")]
[Address(RVA = "0x4C8590", Offset = "0x4C7390", VA = "0x1804C8590", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x040004C0 RID: 1216
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40004C0")]
private readonly string designerTypeName;
// Token: 0x040004C1 RID: 1217
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x40004C1")]
private readonly string designerBaseTypeName;
// Token: 0x040004C2 RID: 1218
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x40004C2")]
private string typeId;
}
}