using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Specifies the custom type description provider for a class. This class cannot be inherited. // Token: 0x02000198 RID: 408 [Token(Token = "0x2000198")] [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: 0x06000AE4 RID: 2788 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000AE4")] [Address(RVA = "0x4DBAC0", Offset = "0x4DA8C0", VA = "0x1804DBAC0")] public TypeDescriptionProviderAttribute(string typeName) { } /// Initializes a new instance of the class using the specified type. /// The type to store in the attribute. /// /// is . // Token: 0x06000AE5 RID: 2789 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000AE5")] [Address(RVA = "0x4DBB40", Offset = "0x4DA940", VA = "0x1804DBB40")] public TypeDescriptionProviderAttribute(Type type) { } /// Gets the type name for the type description provider. /// A containing the qualified type name for the . // Token: 0x1700021D RID: 541 // (get) Token: 0x06000AE6 RID: 2790 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700021D")] public string TypeName { [Token(Token = "0x6000AE6")] [Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")] get { return null; } } // Token: 0x04000603 RID: 1539 [FieldOffset(Offset = "0x10")] [Token(Token = "0x4000603")] private string _typeName; } }