Files
2026-04-10 22:50:51 +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: 0x0200016D RID: 365
[Token(Token = "0x200016D")]
[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: 0x06000932 RID: 2354 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000932")]
[Address(RVA = "0x49E320", Offset = "0x49D120", VA = "0x18049E320")]
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: 0x170001C6 RID: 454
// (get) Token: 0x06000933 RID: 2355 RVA: 0x00005B38 File Offset: 0x00003D38
[Token(Token = "0x170001C6")]
public bool AllowMerge
{
[Token(Token = "0x6000933")]
[Address(RVA = "0x42D5E0", Offset = "0x42C3E0", VA = "0x18042D5E0")]
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: 0x06000934 RID: 2356 RVA: 0x00005B50 File Offset: 0x00003D50
[Token(Token = "0x6000934")]
[Address(RVA = "0x4FC290", Offset = "0x4FB090", VA = "0x1804FC290", 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: 0x06000935 RID: 2357 RVA: 0x00005B68 File Offset: 0x00003D68
[Token(Token = "0x6000935")]
[Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", 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: 0x06000936 RID: 2358 RVA: 0x00005B80 File Offset: 0x00003D80
[Token(Token = "0x6000936")]
[Address(RVA = "0x4FC310", Offset = "0x4FB110", VA = "0x1804FC310", 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: 0x0400057D RID: 1405
[Token(Token = "0x400057D")]
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: 0x0400057E RID: 1406
[Token(Token = "0x400057E")]
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: 0x0400057F RID: 1407
[Token(Token = "0x400057F")]
public static readonly MergablePropertyAttribute Default;
// Token: 0x04000580 RID: 1408
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000580")]
private bool allowMerge;
}
}