using System; using System.Globalization; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides a type converter to convert objects to and from various other representations. // Token: 0x020000EC RID: 236 [Token(Token = "0x20000EC")] public class BooleanConverter : TypeConverter { /// Gets a value indicating whether this converter can convert an object in the given source type to a Boolean object using the specified context. /// An that provides a format context. /// A that represents the type you wish to convert from. /// /// if this object can perform the conversion; otherwise, . // Token: 0x060005CA RID: 1482 RVA: 0x00004530 File Offset: 0x00002730 [Token(Token = "0x60005CA")] [Address(RVA = "0xB92180", Offset = "0xB91180", VA = "0x180B92180", Slot = "4")] public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { return default(bool); } /// Converts the given value object to a Boolean object. /// An that provides a format context. /// A that specifies the culture to which to convert. /// The to convert. /// An that represents the converted . /// /// is not a valid value for the target type. /// The conversion cannot be performed. // Token: 0x060005CB RID: 1483 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60005CB")] [Address(RVA = "0xB92230", Offset = "0xB91230", VA = "0x180B92230", Slot = "6")] public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { return null; } /// Gets a collection of standard values for the Boolean data type. /// An that provides a format context. /// A that holds a standard set of valid values. // Token: 0x060005CC RID: 1484 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60005CC")] [Address(RVA = "0xB92400", Offset = "0xB91400", VA = "0x180B92400", Slot = "12")] public override TypeConverter.StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) { return null; } /// Gets a value indicating whether the list of standard values returned from the method is an exclusive list. /// An that provides a format context. /// /// because the returned from is an exhaustive list of possible values. This method never returns . // Token: 0x060005CD RID: 1485 RVA: 0x00004548 File Offset: 0x00002748 [Token(Token = "0x60005CD")] [Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "13")] public override bool GetStandardValuesExclusive(ITypeDescriptorContext context) { return default(bool); } /// Gets a value indicating whether this object supports a standard set of values that can be picked from a list. /// An that provides a format context. /// /// because can be called to find a common set of values the object supports. This method never returns . // Token: 0x060005CE RID: 1486 RVA: 0x00004560 File Offset: 0x00002760 [Token(Token = "0x60005CE")] [Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "14")] public override bool GetStandardValuesSupported(ITypeDescriptorContext context) { return default(bool); } /// Initializes a new instance of the class. // Token: 0x060005CF RID: 1487 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60005CF")] [Address(RVA = "0xB92590", Offset = "0xB91590", VA = "0x180B92590")] public BooleanConverter() { } // Token: 0x0400045D RID: 1117 [Token(Token = "0x400045D")] private static TypeConverter.StandardValuesCollection values; } }