using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Specifies that this property can be combined with properties belonging to other objects in a Properties window.
// Token: 0x02000169 RID: 361
[Token(Token = "0x2000169")]
[AttributeUsage(AttributeTargets.All)]
public sealed class MergablePropertyAttribute : Attribute
{
/// Initializes a new instance of the class.
///
/// if this property can be combined with properties belonging to other objects in a Properties window; otherwise, .
// Token: 0x0600091C RID: 2332 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600091C")]
[Address(RVA = "0xB9AFE0", Offset = "0xB99FE0", VA = "0x180B9AFE0")]
public MergablePropertyAttribute(bool allowMerge)
{
}
/// Gets a value indicating whether this property can be combined with properties belonging to other objects in a Properties window.
///
/// if this property can be combined with properties belonging to other objects in a Properties window; otherwise, .
// Token: 0x170001C2 RID: 450
// (get) Token: 0x0600091D RID: 2333 RVA: 0x00005B20 File Offset: 0x00003D20
[Token(Token = "0x170001C2")]
public bool AllowMerge
{
[Token(Token = "0x600091D")]
[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: 0x0600091E RID: 2334 RVA: 0x00005B38 File Offset: 0x00003D38
[Token(Token = "0x600091E")]
[Address(RVA = "0xC665E0", Offset = "0xC655E0", VA = "0x180C665E0", 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: 0x0600091F RID: 2335 RVA: 0x00005B50 File Offset: 0x00003D50
[Token(Token = "0x600091F")]
[Address(RVA = "0xB8D310", Offset = "0xB8C310", VA = "0x180B8D310", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// Determines if this attribute is the default.
///
/// if the attribute is the default value for this attribute class; otherwise, .
// Token: 0x06000920 RID: 2336 RVA: 0x00005B68 File Offset: 0x00003D68
[Token(Token = "0x6000920")]
[Address(RVA = "0xC66660", Offset = "0xC65660", VA = "0x180C66660", Slot = "6")]
public override bool IsDefaultAttribute()
{
return default(bool);
}
/// Specifies that a property can be combined with properties belonging to other objects in a Properties window. This field is read-only.
// Token: 0x04000570 RID: 1392
[Token(Token = "0x4000570")]
public static readonly MergablePropertyAttribute Yes;
/// Specifies that a property cannot be combined with properties belonging to other objects in a Properties window. This field is read-only.
// Token: 0x04000571 RID: 1393
[Token(Token = "0x4000571")]
public static readonly MergablePropertyAttribute No;
/// Specifies the default value, which is , that is a property can be combined with properties belonging to other objects in a Properties window. This field is read-only.
// Token: 0x04000572 RID: 1394
[Token(Token = "0x4000572")]
public static readonly MergablePropertyAttribute Default;
// Token: 0x04000573 RID: 1395
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000573")]
private bool allowMerge;
}
}