using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Specifies the custom type description provider for a class. This class cannot be inherited. // Token: 0x02000194 RID: 404 [Token(Token = "0x2000194")] [AttributeUsage(AttributeTargets.Class)] public sealed class TypeDescriptionProviderAttribute : Attribute { /// Initializes a new instance of the class using the specified type name. /// The qualified name of the type. /// /// is . // Token: 0x06000ACE RID: 2766 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000ACE")] [Address(RVA = "0xC2B420", Offset = "0xC2A420", VA = "0x180C2B420")] public TypeDescriptionProviderAttribute(string typeName) { } /// Initializes a new instance of the class using the specified type. /// The type to store in the attribute. /// /// is . // Token: 0x06000ACF RID: 2767 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000ACF")] [Address(RVA = "0xC2B4A0", Offset = "0xC2A4A0", VA = "0x180C2B4A0")] public TypeDescriptionProviderAttribute(Type type) { } /// Gets the type name for the type description provider. /// A containing the qualified type name for the . // Token: 0x17000219 RID: 537 // (get) Token: 0x06000AD0 RID: 2768 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000219")] public string TypeName { [Token(Token = "0x6000AD0")] [Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")] get { return null; } } // Token: 0x040005F6 RID: 1526 [FieldOffset(Offset = "0x10")] [Token(Token = "0x40005F6")] private string _typeName; } }