Files
Aug2021-Cpp2IL-Dump/System/ComponentModel/TypeDescriptionProviderAttribute.cs
2026-04-10 22:50:51 +02:00

55 lines
2.2 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies the custom type description provider for a class. This class cannot be inherited.</summary>
// Token: 0x02000198 RID: 408
[Token(Token = "0x2000198")]
[AttributeUsage(AttributeTargets.Class)]
public sealed class TypeDescriptionProviderAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.TypeDescriptionProviderAttribute" /> class using the specified type name.</summary>
/// <param name="typeName">The qualified name of the type.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="typeName" /> is <see langword="null" />.</exception>
// Token: 0x06000AE4 RID: 2788 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000AE4")]
[Address(RVA = "0x4DBAC0", Offset = "0x4DA8C0", VA = "0x1804DBAC0")]
public TypeDescriptionProviderAttribute(string typeName)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.TypeDescriptionProviderAttribute" /> class using the specified type.</summary>
/// <param name="type">The type to store in the attribute.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="type" /> is <see langword="null" />.</exception>
// Token: 0x06000AE5 RID: 2789 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000AE5")]
[Address(RVA = "0x4DBB40", Offset = "0x4DA940", VA = "0x1804DBB40")]
public TypeDescriptionProviderAttribute(Type type)
{
}
/// <summary>Gets the type name for the type description provider.</summary>
/// <returns>A <see cref="T:System.String" /> containing the qualified type name for the <see cref="T:System.ComponentModel.TypeDescriptionProvider" />.</returns>
// 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;
}
}