using System; using System.Globalization; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides a type converter to convert objects to and from various other representations. // Token: 0x02000109 RID: 265 [Token(Token = "0x2000109")] public class DateTimeConverter : TypeConverter { /// Gets a value indicating whether this converter can convert an object in the given source type to a 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: 0x0600067B RID: 1659 RVA: 0x00004908 File Offset: 0x00002B08 [Token(Token = "0x600067B")] [Address(RVA = "0xB9B3C0", Offset = "0xB9A3C0", VA = "0x180B9B3C0", Slot = "4")] public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { return default(bool); } /// Gets a value indicating whether this converter can convert an object to the given destination type using the context. /// An that provides a format context. /// A that represents the type you wish to convert to. /// /// if this converter can perform the conversion; otherwise, . // Token: 0x0600067C RID: 1660 RVA: 0x00004920 File Offset: 0x00002B20 [Token(Token = "0x600067C")] [Address(RVA = "0xB9B470", Offset = "0xB9A470", VA = "0x180B9B470", Slot = "5")] public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { return default(bool); } /// Converts the given value object to a . /// An that provides a format context. /// An optional . If not supplied, the current culture is assumed. /// The to convert. /// An that represents the converted . /// /// is not a valid value for the target type. /// The conversion cannot be performed. // Token: 0x0600067D RID: 1661 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600067D")] [Address(RVA = "0xB9B520", Offset = "0xB9A520", VA = "0x180B9B520", Slot = "6")] public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { return null; } /// Converts the given value object to a using the arguments. /// An that provides a format context. /// An optional . If not supplied, the current culture is assumed. /// The to convert. /// The to convert the value to. /// An that represents the converted . /// The conversion cannot be performed. // Token: 0x0600067E RID: 1662 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600067E")] [Address(RVA = "0xB9B810", Offset = "0xB9A810", VA = "0x180B9B810", Slot = "7")] public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { return null; } /// Initializes a new instance of the class. // Token: 0x0600067F RID: 1663 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600067F")] [Address(RVA = "0xB9C2C0", Offset = "0xB9B2C0", VA = "0x180B9C2C0")] public DateTimeConverter() { } } }