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: 0x0200016D RID: 365 [Token(Token = "0x200016D")] [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: 0x06000932 RID: 2354 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000932")] [Address(RVA = "0x49E320", Offset = "0x49D120", VA = "0x18049E320")] 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: 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); } } /// Indicates whether this instance and a specified object are equal. /// Another object to compare to. /// /// if is equal to this instance; otherwise, . // 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); } /// Returns the hash code for this instance. /// A hash code for the current . // 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; } /// Determines if this attribute is the default. /// /// if the attribute is the default value for this attribute class; otherwise, . // 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); } /// Specifies that a property can be combined with properties belonging to other objects in a Properties window. This field is read-only. // Token: 0x0400057D RID: 1405 [Token(Token = "0x400057D")] 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: 0x0400057E RID: 1406 [Token(Token = "0x400057E")] 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: 0x0400057F RID: 1407 [Token(Token = "0x400057F")] public static readonly MergablePropertyAttribute Default; // Token: 0x04000580 RID: 1408 [FieldOffset(Offset = "0x10")] [Token(Token = "0x4000580")] private bool allowMerge; } }