Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

92 lines
4.2 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies that this property can be combined with properties belonging to other objects in a Properties window.</summary>
// Token: 0x02000169 RID: 361
[Token(Token = "0x2000169")]
[AttributeUsage(AttributeTargets.All)]
public sealed class MergablePropertyAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.MergablePropertyAttribute" /> class.</summary>
/// <param name="allowMerge">
/// <see langword="true" /> if this property can be combined with properties belonging to other objects in a Properties window; otherwise, <see langword="false" />.</param>
// Token: 0x0600091C RID: 2332 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600091C")]
[Address(RVA = "0xB9AFE0", Offset = "0xB99FE0", VA = "0x180B9AFE0")]
public MergablePropertyAttribute(bool allowMerge)
{
}
/// <summary>Gets a value indicating whether this property can be combined with properties belonging to other objects in a Properties window.</summary>
/// <returns>
/// <see langword="true" /> if this property can be combined with properties belonging to other objects in a Properties window; otherwise, <see langword="false" />.</returns>
// 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);
}
}
/// <summary>Indicates whether this instance and a specified object are equal.</summary>
/// <param name="obj">Another object to compare to.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="obj" /> is equal to this instance; otherwise, <see langword="false" />.</returns>
// 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);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A hash code for the current <see cref="T:System.ComponentModel.MergablePropertyAttribute" />.</returns>
// 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;
}
/// <summary>Determines if this attribute is the default.</summary>
/// <returns>
/// <see langword="true" /> if the attribute is the default value for this attribute class; otherwise, <see langword="false" />.</returns>
// 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);
}
/// <summary>Specifies that a property can be combined with properties belonging to other objects in a Properties window. This <see langword="static" /> field is read-only.</summary>
// Token: 0x04000570 RID: 1392
[Token(Token = "0x4000570")]
public static readonly MergablePropertyAttribute Yes;
/// <summary>Specifies that a property cannot be combined with properties belonging to other objects in a Properties window. This <see langword="static" /> field is read-only.</summary>
// Token: 0x04000571 RID: 1393
[Token(Token = "0x4000571")]
public static readonly MergablePropertyAttribute No;
/// <summary>Specifies the default value, which is <see cref="F:System.ComponentModel.MergablePropertyAttribute.Yes" />, that is a property can be combined with properties belonging to other objects in a Properties window. This <see langword="static" /> field is read-only.</summary>
// 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;
}
}