using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Indicates that an object's text representation is obscured by characters such as asterisks. This class cannot be inherited. // Token: 0x02000172 RID: 370 [Token(Token = "0x2000172")] [AttributeUsage(AttributeTargets.All)] public sealed class PasswordPropertyTextAttribute : Attribute { /// Initializes a new instance of the class. // Token: 0x0600095B RID: 2395 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600095B")] [Address(RVA = "0x4FD760", Offset = "0x4FC560", VA = "0x1804FD760")] public PasswordPropertyTextAttribute() { } /// Initializes a new instance of the class, optionally showing password text. /// /// to indicate that the property should be shown as password text; otherwise, . The default is . // Token: 0x0600095C RID: 2396 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600095C")] [Address(RVA = "0x49E320", Offset = "0x49D120", VA = "0x18049E320")] public PasswordPropertyTextAttribute(bool password) { } /// Gets a value indicating if the property for which the is defined should be shown as password text. /// /// if the property should be shown as password text; otherwise, . // Token: 0x170001D1 RID: 465 // (get) Token: 0x0600095D RID: 2397 RVA: 0x00005C70 File Offset: 0x00003E70 [Token(Token = "0x170001D1")] public bool Password { [Token(Token = "0x600095D")] [Address(RVA = "0x42D5E0", Offset = "0x42C3E0", VA = "0x18042D5E0")] get { return default(bool); } } /// Determines whether two instances are equal. /// The to compare with the current . /// /// if the specified is equal to the current ; otherwise, . // Token: 0x0600095E RID: 2398 RVA: 0x00005C88 File Offset: 0x00003E88 [Token(Token = "0x600095E")] [Address(RVA = "0x4FD780", Offset = "0x4FC580", VA = "0x1804FD780", Slot = "0")] public override bool Equals(object o) { return default(bool); } /// Returns the hash code for this instance. /// A hash code for the current . // Token: 0x0600095F RID: 2399 RVA: 0x00005CA0 File Offset: 0x00003EA0 [Token(Token = "0x600095F")] [Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", Slot = "2")] public override int GetHashCode() { return 0; } /// Returns an indication whether the value of this instance is the default value. /// /// if this instance is the default attribute for the class; otherwise, . // Token: 0x06000960 RID: 2400 RVA: 0x00005CB8 File Offset: 0x00003EB8 [Token(Token = "0x6000960")] [Address(RVA = "0x4FD810", Offset = "0x4FC610", VA = "0x1804FD810", Slot = "6")] public override bool IsDefaultAttribute() { return default(bool); } /// Specifies that a text property is used as a password. This ( in Visual Basic) field is read-only. // Token: 0x04000588 RID: 1416 [Token(Token = "0x4000588")] public static readonly PasswordPropertyTextAttribute Yes; /// Specifies that a text property is not used as a password. This ( in Visual Basic) field is read-only. // Token: 0x04000589 RID: 1417 [Token(Token = "0x4000589")] public static readonly PasswordPropertyTextAttribute No; /// Specifies the default value for the . // Token: 0x0400058A RID: 1418 [Token(Token = "0x400058A")] public static readonly PasswordPropertyTextAttribute Default; // Token: 0x0400058B RID: 1419 [FieldOffset(Offset = "0x10")] [Token(Token = "0x400058B")] private bool _password; } }