using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Identifies a type as an object suitable for binding to an object. This class cannot be inherited. // Token: 0x02000109 RID: 265 [Token(Token = "0x2000109")] [AttributeUsage(AttributeTargets.Class)] public sealed class DataObjectAttribute : Attribute { /// Initializes a new instance of the class. // Token: 0x06000679 RID: 1657 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000679")] [Address(RVA = "0x49E350", Offset = "0x49D150", VA = "0x18049E350")] public DataObjectAttribute() { } /// Initializes a new instance of the class and indicates whether an object is suitable for binding to an object. /// /// if the object is suitable for binding to an object; otherwise, . // Token: 0x0600067A RID: 1658 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600067A")] [Address(RVA = "0x49E320", Offset = "0x49D120", VA = "0x18049E320")] public DataObjectAttribute(bool isDataObject) { } /// Gets a value indicating whether an object should be considered suitable for binding to an object at design time. /// /// if the object should be considered suitable for binding to an object; otherwise, . // Token: 0x17000124 RID: 292 // (get) Token: 0x0600067B RID: 1659 RVA: 0x000047B8 File Offset: 0x000029B8 [Token(Token = "0x17000124")] public bool IsDataObject { [Token(Token = "0x600067B")] [Address(RVA = "0x42D5E0", Offset = "0x42C3E0", VA = "0x18042D5E0")] get { return default(bool); } } /// Determines whether this instance of fits the pattern of another object. /// An object to compare with this instance of . /// /// if this instance is the same as the instance specified by the parameter; otherwise, . // Token: 0x0600067C RID: 1660 RVA: 0x000047D0 File Offset: 0x000029D0 [Token(Token = "0x600067C")] [Address(RVA = "0x49E190", Offset = "0x49CF90", VA = "0x18049E190", Slot = "0")] public override bool Equals(object obj) { return default(bool); } /// Returns the hash code for this instance. /// A 32-bit signed integer hash code. // Token: 0x0600067D RID: 1661 RVA: 0x000047E8 File Offset: 0x000029E8 [Token(Token = "0x600067D")] [Address(RVA = "0x494E40", Offset = "0x493C40", VA = "0x180494E40", Slot = "2")] public override int GetHashCode() { return 0; } /// Gets a value indicating whether the current value of the attribute is the default value for the attribute. /// /// if the current value of the attribute is the default; otherwise, . // Token: 0x0600067E RID: 1662 RVA: 0x00004800 File Offset: 0x00002A00 [Token(Token = "0x600067E")] [Address(RVA = "0x49E210", Offset = "0x49D010", VA = "0x18049E210", Slot = "6")] public override bool IsDefaultAttribute() { return default(bool); } /// Indicates that the class is suitable for binding to an object at design time. This field is read-only. // Token: 0x0400049E RID: 1182 [Token(Token = "0x400049E")] public static readonly DataObjectAttribute DataObject; /// Indicates that the class is not suitable for binding to an object at design time. This field is read-only. // Token: 0x0400049F RID: 1183 [Token(Token = "0x400049F")] public static readonly DataObjectAttribute NonDataObject; /// Represents the default value of the class, which indicates that the class is suitable for binding to an object at design time. This field is read-only. // Token: 0x040004A0 RID: 1184 [Token(Token = "0x40004A0")] public static readonly DataObjectAttribute Default; // Token: 0x040004A1 RID: 1185 [FieldOffset(Offset = "0x10")] [Token(Token = "0x40004A1")] private bool _isDataObject; } }