Files
27Aug2021-Cpp2IL-Dump/System/ComponentModel/TypeDescriptionProviderAttribute.cs
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x02000194 RID: 404
[Token(Token = "0x2000194")]
[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: 0x06000ACE RID: 2766 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000ACE")]
[Address(RVA = "0xC2B420", Offset = "0xC2A420", VA = "0x180C2B420")]
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: 0x06000ACF RID: 2767 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000ACF")]
[Address(RVA = "0xC2B4A0", Offset = "0xC2A4A0", VA = "0x180C2B4A0")]
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: 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;
}
}