using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Specifies that the property can be used as an application setting.
// Token: 0x0200017A RID: 378
[Token(Token = "0x200017A")]
[Obsolete]
[Obsolete("Use System.ComponentModel.SettingsBindableAttribute instead to work with the new settings model.")]
[AttributeUsage(AttributeTargets.Property)]
public class RecommendedAsConfigurableAttribute : Attribute
{
/// Initializes a new instance of the class.
///
/// if the property this attribute is bound to can be used as an application setting; otherwise, .
// Token: 0x060009C4 RID: 2500 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60009C4")]
[Address(RVA = "0xB9AFE0", Offset = "0xB99FE0", VA = "0x180B9AFE0")]
public RecommendedAsConfigurableAttribute(bool recommendedAsConfigurable)
{
}
/// Gets a value indicating whether the property this attribute is bound to can be used as an application setting.
///
/// if the property this attribute is bound to can be used as an application setting; otherwise, .
// Token: 0x170001EF RID: 495
// (get) Token: 0x060009C5 RID: 2501 RVA: 0x00005F58 File Offset: 0x00004158
[Token(Token = "0x170001EF")]
public bool RecommendedAsConfigurable
{
[Token(Token = "0x60009C5")]
[Address(RVA = "0x4944B0", Offset = "0x4934B0", VA = "0x1804944B0")]
get
{
return default(bool);
}
}
/// Indicates whether this instance and a specified object are equal.
/// Another object to compare to.
///
/// if is equal to this instance; otherwise, .
// Token: 0x060009C6 RID: 2502 RVA: 0x00005F70 File Offset: 0x00004170
[Token(Token = "0x60009C6")]
[Address(RVA = "0xC18640", Offset = "0xC17640", VA = "0x180C18640", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// Returns the hash code for this instance.
/// A hash code for the current .
// Token: 0x060009C7 RID: 2503 RVA: 0x00005F88 File Offset: 0x00004188
[Token(Token = "0x60009C7")]
[Address(RVA = "0xB8D310", Offset = "0xB8C310", VA = "0x180B8D310", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// Indicates whether the value of this instance is the default value for the class.
///
/// if this instance is the default attribute for the class; otherwise, .
// Token: 0x060009C8 RID: 2504 RVA: 0x00005FA0 File Offset: 0x000041A0
[Token(Token = "0x60009C8")]
[Address(RVA = "0xC186F0", Offset = "0xC176F0", VA = "0x180C186F0", Slot = "6")]
public override bool IsDefaultAttribute()
{
return default(bool);
}
// Token: 0x0400059A RID: 1434
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400059A")]
private bool recommendedAsConfigurable;
/// Specifies that a property cannot be used as an application setting. This field is read-only.
// Token: 0x0400059B RID: 1435
[Token(Token = "0x400059B")]
public static readonly RecommendedAsConfigurableAttribute No;
/// Specifies that a property can be used as an application setting. This field is read-only.
// Token: 0x0400059C RID: 1436
[Token(Token = "0x400059C")]
public static readonly RecommendedAsConfigurableAttribute Yes;
/// Specifies the default value for the , which is . This field is read-only.
// Token: 0x0400059D RID: 1437
[Token(Token = "0x400059D")]
public static readonly RecommendedAsConfigurableAttribute Default;
}
}