using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Specifies the class used to implement design-time services for a component. // Token: 0x02000114 RID: 276 [Token(Token = "0x2000114")] [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: 0x060006CE RID: 1742 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006CE")] [Address(RVA = "0xC52B50", Offset = "0xC51B50", VA = "0x180C52B50")] 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: 0x060006CF RID: 1743 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006CF")] [Address(RVA = "0xC529F0", Offset = "0xC519F0", VA = "0x180C529F0")] 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: 0x060006D0 RID: 1744 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006D0")] [Address(RVA = "0xC52C20", Offset = "0xC51C20", VA = "0x180C52C20")] 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: 0x060006D1 RID: 1745 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006D1")] [Address(RVA = "0xC52AA0", Offset = "0xC51AA0", VA = "0x180C52AA0")] 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: 0x060006D2 RID: 1746 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006D2")] [Address(RVA = "0xC52CC0", Offset = "0xC51CC0", VA = "0x180C52CC0")] 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: 0x17000132 RID: 306 // (get) Token: 0x060006D3 RID: 1747 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000132")] public string DesignerBaseTypeName { [Token(Token = "0x60006D3")] [Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")] 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: 0x17000133 RID: 307 // (get) Token: 0x060006D4 RID: 1748 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000133")] public string DesignerTypeName { [Token(Token = "0x60006D4")] [Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")] get { return null; } } /// Gets a unique ID for this attribute type. /// A unique ID for this attribute type. // Token: 0x17000134 RID: 308 // (get) Token: 0x060006D5 RID: 1749 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000134")] public override object TypeId { [Token(Token = "0x60006D5")] [Address(RVA = "0xC52D30", Offset = "0xC51D30", VA = "0x180C52D30", 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: 0x060006D6 RID: 1750 RVA: 0x00004B78 File Offset: 0x00002D78 [Token(Token = "0x60006D6")] [Address(RVA = "0xC52940", Offset = "0xC51940", VA = "0x180C52940", 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: 0x060006D7 RID: 1751 RVA: 0x00004B90 File Offset: 0x00002D90 [Token(Token = "0x60006D7")] [Address(RVA = "0xC18390", Offset = "0xC17390", VA = "0x180C18390", Slot = "2")] public override int GetHashCode() { return 0; } // Token: 0x040004B3 RID: 1203 [FieldOffset(Offset = "0x10")] [Token(Token = "0x40004B3")] private readonly string designerTypeName; // Token: 0x040004B4 RID: 1204 [FieldOffset(Offset = "0x18")] [Token(Token = "0x40004B4")] private readonly string designerBaseTypeName; // Token: 0x040004B5 RID: 1205 [FieldOffset(Offset = "0x20")] [Token(Token = "0x40004B5")] private string typeId; } }