This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,136 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies the filter string and filter type to use for a toolbox item.</summary>
// Token: 0x02000190 RID: 400
[Token(Token = "0x2000190")]
[AttributeUsage(AttributeTargets.Class)]
[Serializable]
public sealed class ToolboxItemFilterAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ToolboxItemFilterAttribute" /> class using the specified filter string.</summary>
/// <param name="filterString">The filter string for the toolbox item.</param>
// Token: 0x06000A89 RID: 2697 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A89")]
[Address(RVA = "0x4DA530", Offset = "0x4D9330", VA = "0x1804DA530")]
public ToolboxItemFilterAttribute(string filterString)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ToolboxItemFilterAttribute" /> class using the specified filter string and type.</summary>
/// <param name="filterString">The filter string for the toolbox item.</param>
/// <param name="filterType">A <see cref="T:System.ComponentModel.ToolboxItemFilterType" /> indicating the type of the filter.</param>
// Token: 0x06000A8A RID: 2698 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A8A")]
[Address(RVA = "0x4DA5B0", Offset = "0x4D93B0", VA = "0x1804DA5B0")]
public ToolboxItemFilterAttribute(string filterString, ToolboxItemFilterType filterType)
{
}
/// <summary>Gets the filter string for the toolbox item.</summary>
/// <returns>The filter string for the toolbox item.</returns>
// Token: 0x17000210 RID: 528
// (get) Token: 0x06000A8B RID: 2699 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000210")]
public string FilterString
{
[Token(Token = "0x6000A8B")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
get
{
return null;
}
}
/// <summary>Gets the type of the filter.</summary>
/// <returns>A <see cref="T:System.ComponentModel.ToolboxItemFilterType" /> that indicates the type of the filter.</returns>
// Token: 0x17000211 RID: 529
// (get) Token: 0x06000A8C RID: 2700 RVA: 0x000062A0 File Offset: 0x000044A0
[Token(Token = "0x17000211")]
public ToolboxItemFilterType FilterType
{
[Token(Token = "0x6000A8C")]
[Address(RVA = "0x3FA560", Offset = "0x3F9360", VA = "0x1803FA560")]
get
{
return ToolboxItemFilterType.Allow;
}
}
/// <summary>Gets the type ID for the attribute.</summary>
/// <returns>The type ID for this attribute. All <see cref="T:System.ComponentModel.ToolboxItemFilterAttribute" /> objects with the same filter string return the same type ID.</returns>
// Token: 0x17000212 RID: 530
// (get) Token: 0x06000A8D RID: 2701 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000212")]
public override object TypeId
{
[Token(Token = "0x6000A8D")]
[Address(RVA = "0x4DA640", Offset = "0x4D9440", VA = "0x1804DA640", Slot = "4")]
get
{
return null;
}
}
/// <summary>Returns a value that indicates whether this instance is equal to a specified object.</summary>
/// <param name="obj">An <see cref="T:System.Object" /> to compare with this instance or a null reference (<see langword="Nothing" /> in Visual Basic).</param>
/// <returns>
/// <see langword="true" /> if <paramref name="obj" /> equals the type and value of this instance; otherwise, <see langword="false" />.</returns>
// Token: 0x06000A8E RID: 2702 RVA: 0x000062B8 File Offset: 0x000044B8
[Token(Token = "0x6000A8E")]
[Address(RVA = "0x4DA290", Offset = "0x4D9090", VA = "0x1804DA290", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// Token: 0x06000A8F RID: 2703 RVA: 0x000062D0 File Offset: 0x000044D0
[Token(Token = "0x6000A8F")]
[Address(RVA = "0x4DA3B0", Offset = "0x4D91B0", VA = "0x1804DA3B0", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Indicates whether the specified object has a matching filter string.</summary>
/// <param name="obj">The object to test for a matching filter string.</param>
/// <returns>
/// <see langword="true" /> if the specified object has a matching filter string; otherwise, <see langword="false" />.</returns>
// Token: 0x06000A90 RID: 2704 RVA: 0x000062E8 File Offset: 0x000044E8
[Token(Token = "0x6000A90")]
[Address(RVA = "0x4DA3E0", Offset = "0x4D91E0", VA = "0x1804DA3E0", Slot = "5")]
public override bool Match(object obj)
{
return default(bool);
}
/// <summary>Returns a string that represents the current object.</summary>
/// <returns>A string that represents the current object.</returns>
// Token: 0x06000A91 RID: 2705 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A91")]
[Address(RVA = "0x4DA460", Offset = "0x4D9260", VA = "0x1804DA460", Slot = "3")]
public override string ToString()
{
return null;
}
// Token: 0x040005F1 RID: 1521
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40005F1")]
private ToolboxItemFilterType filterType;
// Token: 0x040005F2 RID: 1522
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x40005F2")]
private string filterString;
// Token: 0x040005F3 RID: 1523
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x40005F3")]
private string typeId;
}
}