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,163 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies the default value for a property.</summary>
// Token: 0x02000113 RID: 275
[Token(Token = "0x2000113")]
[AttributeUsage(AttributeTargets.All)]
public class DefaultValueAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class, converting the specified value to the specified type, and using an invariant culture as the translation context.</summary>
/// <param name="type">A <see cref="T:System.Type" /> that represents the type to convert the value to.</param>
/// <param name="value">A <see cref="T:System.String" /> that can be converted to the type using the <see cref="T:System.ComponentModel.TypeConverter" /> for the type and the U.S. English culture.</param>
// Token: 0x060006B4 RID: 1716 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006B4")]
[Address(RVA = "0x4E7610", Offset = "0x4E6410", VA = "0x1804E7610")]
public DefaultValueAttribute(Type type, string value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class using a Unicode character.</summary>
/// <param name="value">A Unicode character that is the default value.</param>
// Token: 0x060006B5 RID: 1717 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006B5")]
[Address(RVA = "0x4E7730", Offset = "0x4E6530", VA = "0x1804E7730")]
public DefaultValueAttribute(char value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class using an 8-bit unsigned integer.</summary>
/// <param name="value">An 8-bit unsigned integer that is the default value.</param>
// Token: 0x060006B6 RID: 1718 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006B6")]
[Address(RVA = "0x4E75B0", Offset = "0x4E63B0", VA = "0x1804E75B0")]
public DefaultValueAttribute(byte value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class using a 16-bit signed integer.</summary>
/// <param name="value">A 16-bit signed integer that is the default value.</param>
// Token: 0x060006B7 RID: 1719 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006B7")]
[Address(RVA = "0x4E7550", Offset = "0x4E6350", VA = "0x1804E7550")]
public DefaultValueAttribute(short value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class using a 32-bit signed integer.</summary>
/// <param name="value">A 32-bit signed integer that is the default value.</param>
// Token: 0x060006B8 RID: 1720 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006B8")]
[Address(RVA = "0x4E7850", Offset = "0x4E6650", VA = "0x1804E7850")]
public DefaultValueAttribute(int value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class using a 64-bit signed integer.</summary>
/// <param name="value">A 64-bit signed integer that is the default value.</param>
// Token: 0x060006B9 RID: 1721 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006B9")]
[Address(RVA = "0x4E78B0", Offset = "0x4E66B0", VA = "0x1804E78B0")]
public DefaultValueAttribute(long value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class using a single-precision floating point number.</summary>
/// <param name="value">A single-precision floating point number that is the default value.</param>
// Token: 0x060006BA RID: 1722 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006BA")]
[Address(RVA = "0x4E77F0", Offset = "0x4E65F0", VA = "0x1804E77F0")]
public DefaultValueAttribute(float value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class using a double-precision floating point number.</summary>
/// <param name="value">A double-precision floating point number that is the default value.</param>
// Token: 0x060006BB RID: 1723 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006BB")]
[Address(RVA = "0x4E76D0", Offset = "0x4E64D0", VA = "0x1804E76D0")]
public DefaultValueAttribute(double value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class using a <see cref="T:System.Boolean" /> value.</summary>
/// <param name="value">A <see cref="T:System.Boolean" /> that is the default value.</param>
// Token: 0x060006BC RID: 1724 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006BC")]
[Address(RVA = "0x4E7790", Offset = "0x4E6590", VA = "0x1804E7790")]
public DefaultValueAttribute(bool value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class using a <see cref="T:System.String" />.</summary>
/// <param name="value">A <see cref="T:System.String" /> that is the default value.</param>
// Token: 0x060006BD RID: 1725 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006BD")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
public DefaultValueAttribute(string value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class.</summary>
/// <param name="value">An <see cref="T:System.Object" /> that represents the default value.</param>
// Token: 0x060006BE RID: 1726 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006BE")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
public DefaultValueAttribute(object value)
{
}
/// <summary>Gets the default value of the property this attribute is bound to.</summary>
/// <returns>An <see cref="T:System.Object" /> that represents the default value of the property this attribute is bound to.</returns>
// Token: 0x17000130 RID: 304
// (get) Token: 0x060006BF RID: 1727 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000130")]
public virtual object Value
{
[Token(Token = "0x60006BF")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20", Slot = "7")]
get
{
return null;
}
}
/// <summary>Returns whether the value of the given object is equal to the current <see cref="T:System.ComponentModel.DefaultValueAttribute" />.</summary>
/// <param name="obj">The object to test the value equality of.</param>
/// <returns>
/// <see langword="true" /> if the value of the given object is equal to that of the current; otherwise, <see langword="false" />.</returns>
// Token: 0x060006C0 RID: 1728 RVA: 0x00004A40 File Offset: 0x00002C40
[Token(Token = "0x60006C0")]
[Address(RVA = "0x4E7410", Offset = "0x4E6210", VA = "0x1804E7410", 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: 0x060006C1 RID: 1729 RVA: 0x00004A58 File Offset: 0x00002C58
[Token(Token = "0x60006C1")]
[Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Sets the default value for the property to which this attribute is bound.</summary>
/// <param name="value">The default value.</param>
// Token: 0x060006C2 RID: 1730 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006C2")]
[Address(RVA = "0x3F7200", Offset = "0x3F6000", VA = "0x1803F7200")]
protected void SetValue(object value)
{
}
// Token: 0x040004B4 RID: 1204
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40004B4")]
private object value;
}
}