using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Represents an attribute of a toolbox item.
// Token: 0x020001B3 RID: 435
[Token(Token = "0x20001B3")]
[AttributeUsage(AttributeTargets.All)]
public class ToolboxItemAttribute : Attribute
{
/// Gets a value indicating whether the current value of the attribute is the default value for the attribute.
///
/// if the current value of the attribute is the default; otherwise, .
// Token: 0x06000BED RID: 3053 RVA: 0x00006840 File Offset: 0x00004A40
[Token(Token = "0x6000BED")]
[Address(RVA = "0xC29800", Offset = "0xC28800", VA = "0x180C29800", Slot = "6")]
public override bool IsDefaultAttribute()
{
return default(bool);
}
/// Initializes a new instance of the class and specifies whether to use default initialization values.
///
/// to create a toolbox item attribute for a default type; to associate no default toolbox item support for this attribute.
// Token: 0x06000BEE RID: 3054 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000BEE")]
[Address(RVA = "0xC29A60", Offset = "0xC28A60", VA = "0x180C29A60")]
public ToolboxItemAttribute(bool defaultType)
{
}
/// Initializes a new instance of the class using the specified name of the type.
/// The names of the type of the toolbox item and of the assembly that contains the type.
// Token: 0x06000BEF RID: 3055 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000BEF")]
[Address(RVA = "0xC299D0", Offset = "0xC289D0", VA = "0x180C299D0")]
public ToolboxItemAttribute(string toolboxItemTypeName)
{
}
/// Initializes a new instance of the class using the specified type of the toolbox item.
/// The type of the toolbox item.
// Token: 0x06000BF0 RID: 3056 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000BF0")]
[Address(RVA = "0xC29980", Offset = "0xC28980", VA = "0x180C29980")]
public ToolboxItemAttribute(Type toolboxItemType)
{
}
/// Gets or sets the type of the toolbox item.
/// The type of the toolbox item.
/// The type cannot be found.
// Token: 0x1700022E RID: 558
// (get) Token: 0x06000BF1 RID: 3057 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700022E")]
public Type ToolboxItemType
{
[Token(Token = "0x6000BF1")]
[Address(RVA = "0xC29B00", Offset = "0xC28B00", VA = "0x180C29B00")]
get
{
return null;
}
}
/// Gets or sets the name of the type of the current .
/// The fully qualified type name of the current toolbox item.
// Token: 0x1700022F RID: 559
// (get) Token: 0x06000BF2 RID: 3058 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700022F")]
public string ToolboxItemTypeName
{
[Token(Token = "0x6000BF2")]
[Address(RVA = "0xC29AB0", Offset = "0xC28AB0", VA = "0x180C29AB0")]
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: 0x06000BF3 RID: 3059 RVA: 0x00006858 File Offset: 0x00004A58
[Token(Token = "0x6000BF3")]
[Address(RVA = "0xC296A0", Offset = "0xC286A0", VA = "0x180C296A0", 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: 0x06000BF4 RID: 3060 RVA: 0x00006870 File Offset: 0x00004A70
[Token(Token = "0x6000BF4")]
[Address(RVA = "0xC297D0", Offset = "0xC287D0", VA = "0x180C297D0", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x04000640 RID: 1600
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000640")]
private Type toolboxItemType;
// Token: 0x04000641 RID: 1601
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000641")]
private string toolboxItemTypeName;
/// Initializes a new instance of the class and sets the type to the default, . This field is read-only.
// Token: 0x04000642 RID: 1602
[Token(Token = "0x4000642")]
public static readonly ToolboxItemAttribute Default;
/// Initializes a new instance of the class and sets the type to . This field is read-only.
// Token: 0x04000643 RID: 1603
[Token(Token = "0x4000643")]
public static readonly ToolboxItemAttribute None;
}
}