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,75 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies when a component property can be bound to an application setting.</summary>
// Token: 0x0200018B RID: 395
[Token(Token = "0x200018B")]
[AttributeUsage(AttributeTargets.Property)]
public sealed class SettingsBindableAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.SettingsBindableAttribute" /> class.</summary>
/// <param name="bindable">
/// <see langword="true" /> to specify that a property is appropriate to bind settings to; otherwise, <see langword="false" />.</param>
// Token: 0x06000A72 RID: 2674 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A72")]
[Address(RVA = "0x49E320", Offset = "0x49D120", VA = "0x18049E320")]
public SettingsBindableAttribute(bool bindable)
{
}
/// <summary>Gets a value indicating whether a property is appropriate to bind settings to.</summary>
/// <returns>
/// <see langword="true" /> if the property is appropriate to bind settings to; otherwise, <see langword="false" />.</returns>
// Token: 0x1700020D RID: 525
// (get) Token: 0x06000A73 RID: 2675 RVA: 0x000061B0 File Offset: 0x000043B0
[Token(Token = "0x1700020D")]
public bool Bindable
{
[Token(Token = "0x6000A73")]
[Address(RVA = "0x42D5E0", Offset = "0x42C3E0", VA = "0x18042D5E0")]
get
{
return default(bool);
}
}
/// <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: 0x06000A74 RID: 2676 RVA: 0x000061C8 File Offset: 0x000043C8
[Token(Token = "0x6000A74")]
[Address(RVA = "0x4D8840", Offset = "0x4D7640", VA = "0x1804D8840", 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: 0x06000A75 RID: 2677 RVA: 0x000061E0 File Offset: 0x000043E0
[Token(Token = "0x6000A75")]
[Address(RVA = "0x494E40", Offset = "0x493C40", VA = "0x180494E40", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Specifies that a property is appropriate to bind settings to.</summary>
// Token: 0x040005EE RID: 1518
[Token(Token = "0x40005EE")]
public static readonly SettingsBindableAttribute Yes;
/// <summary>Specifies that a property is not appropriate to bind settings to.</summary>
// Token: 0x040005EF RID: 1519
[Token(Token = "0x40005EF")]
public static readonly SettingsBindableAttribute No;
// Token: 0x040005F0 RID: 1520
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40005F0")]
private bool _bindable;
}
}