using System; using System.Globalization; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides a type converter to convert objects to and from various other representations. // Token: 0x0200010D RID: 269 [Token(Token = "0x200010D")] 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: 0x06000691 RID: 1681 RVA: 0x00004920 File Offset: 0x00002B20 [Token(Token = "0x6000691")] [Address(RVA = "0x49E720", Offset = "0x49D520", VA = "0x18049E720", 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: 0x06000692 RID: 1682 RVA: 0x00004938 File Offset: 0x00002B38 [Token(Token = "0x6000692")] [Address(RVA = "0x49E7D0", Offset = "0x49D5D0", VA = "0x18049E7D0", 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: 0x06000693 RID: 1683 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000693")] [Address(RVA = "0x49E880", Offset = "0x49D680", VA = "0x18049E880", 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: 0x06000694 RID: 1684 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000694")] [Address(RVA = "0x49EB70", Offset = "0x49D970", VA = "0x18049EB70", Slot = "7")] public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { return null; } /// Initializes a new instance of the class. // Token: 0x06000695 RID: 1685 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000695")] [Address(RVA = "0x49F620", Offset = "0x49E420", VA = "0x18049F620")] public DateTimeConverter() { } } }