using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Specifies the default value for a property. // Token: 0x02000113 RID: 275 [Token(Token = "0x2000113")] [AttributeUsage(AttributeTargets.All)] public class DefaultValueAttribute : Attribute { /// Initializes a new instance of the class, converting the specified value to the specified type, and using an invariant culture as the translation context. /// A that represents the type to convert the value to. /// A that can be converted to the type using the for the type and the U.S. English culture. // Token: 0x060006B4 RID: 1716 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006B4")] [Address(RVA = "0x4E7610", Offset = "0x4E6410", VA = "0x1804E7610")] public DefaultValueAttribute(Type type, string value) { } /// Initializes a new instance of the class using a Unicode character. /// A Unicode character that is the default value. // Token: 0x060006B5 RID: 1717 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006B5")] [Address(RVA = "0x4E7730", Offset = "0x4E6530", VA = "0x1804E7730")] public DefaultValueAttribute(char value) { } /// Initializes a new instance of the class using an 8-bit unsigned integer. /// An 8-bit unsigned integer that is the default value. // Token: 0x060006B6 RID: 1718 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006B6")] [Address(RVA = "0x4E75B0", Offset = "0x4E63B0", VA = "0x1804E75B0")] public DefaultValueAttribute(byte value) { } /// Initializes a new instance of the class using a 16-bit signed integer. /// A 16-bit signed integer that is the default value. // Token: 0x060006B7 RID: 1719 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006B7")] [Address(RVA = "0x4E7550", Offset = "0x4E6350", VA = "0x1804E7550")] public DefaultValueAttribute(short value) { } /// Initializes a new instance of the class using a 32-bit signed integer. /// A 32-bit signed integer that is the default value. // Token: 0x060006B8 RID: 1720 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006B8")] [Address(RVA = "0x4E7850", Offset = "0x4E6650", VA = "0x1804E7850")] public DefaultValueAttribute(int value) { } /// Initializes a new instance of the class using a 64-bit signed integer. /// A 64-bit signed integer that is the default value. // Token: 0x060006B9 RID: 1721 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006B9")] [Address(RVA = "0x4E78B0", Offset = "0x4E66B0", VA = "0x1804E78B0")] public DefaultValueAttribute(long value) { } /// Initializes a new instance of the class using a single-precision floating point number. /// A single-precision floating point number that is the default value. // Token: 0x060006BA RID: 1722 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006BA")] [Address(RVA = "0x4E77F0", Offset = "0x4E65F0", VA = "0x1804E77F0")] public DefaultValueAttribute(float value) { } /// Initializes a new instance of the class using a double-precision floating point number. /// A double-precision floating point number that is the default value. // Token: 0x060006BB RID: 1723 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006BB")] [Address(RVA = "0x4E76D0", Offset = "0x4E64D0", VA = "0x1804E76D0")] public DefaultValueAttribute(double value) { } /// Initializes a new instance of the class using a value. /// A that is the default value. // Token: 0x060006BC RID: 1724 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006BC")] [Address(RVA = "0x4E7790", Offset = "0x4E6590", VA = "0x1804E7790")] public DefaultValueAttribute(bool value) { } /// Initializes a new instance of the class using a . /// A that is the default value. // Token: 0x060006BD RID: 1725 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006BD")] [Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")] public DefaultValueAttribute(string value) { } /// Initializes a new instance of the class. /// An that represents the default value. // Token: 0x060006BE RID: 1726 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006BE")] [Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")] public DefaultValueAttribute(object value) { } /// Gets the default value of the property this attribute is bound to. /// An that represents the default value of the property this attribute is bound to. // Token: 0x17000130 RID: 304 // (get) Token: 0x060006BF RID: 1727 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000130")] public virtual object Value { [Token(Token = "0x60006BF")] [Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20", Slot = "7")] get { return null; } } /// Returns whether the value of the given object is equal to the current . /// The object to test the value equality of. /// /// if the value of the given object is equal to that of the current; otherwise, . // Token: 0x060006C0 RID: 1728 RVA: 0x00004A40 File Offset: 0x00002C40 [Token(Token = "0x60006C0")] [Address(RVA = "0x4E7410", Offset = "0x4E6210", VA = "0x1804E7410", 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: 0x060006C1 RID: 1729 RVA: 0x00004A58 File Offset: 0x00002C58 [Token(Token = "0x60006C1")] [Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", Slot = "2")] public override int GetHashCode() { return 0; } /// Sets the default value for the property to which this attribute is bound. /// The default value. // Token: 0x060006C2 RID: 1730 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006C2")] [Address(RVA = "0x3F7200", Offset = "0x3F6000", VA = "0x1803F7200")] protected void SetValue(object value) { } // Token: 0x040004B4 RID: 1204 [FieldOffset(Offset = "0x10")] [Token(Token = "0x40004B4")] private object value; } }