using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Specifies the filter string and filter type to use for a toolbox item. // Token: 0x02000190 RID: 400 [Token(Token = "0x2000190")] [AttributeUsage(AttributeTargets.Class)] [Serializable] public sealed class ToolboxItemFilterAttribute : Attribute { /// Initializes a new instance of the class using the specified filter string. /// The filter string for the toolbox item. // Token: 0x06000A89 RID: 2697 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000A89")] [Address(RVA = "0x4DA530", Offset = "0x4D9330", VA = "0x1804DA530")] public ToolboxItemFilterAttribute(string filterString) { } /// Initializes a new instance of the class using the specified filter string and type. /// The filter string for the toolbox item. /// A indicating the type of the filter. // 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) { } /// Gets the filter string for the toolbox item. /// The filter string for the toolbox item. // 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; } } /// Gets the type of the filter. /// A that indicates the type of the filter. // 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; } } /// Gets the type ID for the attribute. /// The type ID for this attribute. All objects with the same filter string return the same type ID. // 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; } } /// Returns a value that indicates whether this instance is equal to a specified object. /// An to compare with this instance or a null reference ( in Visual Basic). /// /// if equals the type and value of this instance; otherwise, . // 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); } /// Returns the hash code for this instance. /// A 32-bit signed integer hash code. // 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; } /// Indicates whether the specified object has a matching filter string. /// The object to test for a matching filter string. /// /// if the specified object has a matching filter string; otherwise, . // 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); } /// Returns a string that represents the current object. /// A string that represents the current object. // 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; } }