using System; using System.Collections; using System.Collections.Generic; using System.Globalization; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides a type converter to convert objects to and from various other representations. // Token: 0x02000100 RID: 256 [Token(Token = "0x2000100")] public class CultureInfoConverter : TypeConverter { // Token: 0x1700011E RID: 286 // (get) Token: 0x06000645 RID: 1605 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700011E")] private string DefaultCultureString { [Token(Token = "0x6000645")] [Address(RVA = "0xB984A0", Offset = "0xB974A0", VA = "0x180B984A0")] get { return null; } } /// Retrieves the name of the specified culture. /// A that specifies the culture to get the name for. /// The name of the specified culture. // Token: 0x06000646 RID: 1606 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000646")] [Address(RVA = "0xB98230", Offset = "0xB97230", VA = "0x180B98230", Slot = "16")] protected virtual string GetCultureName(CultureInfo culture) { return null; } /// 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 converter can perform the conversion; otherwise, . // Token: 0x06000647 RID: 1607 RVA: 0x00004728 File Offset: 0x00002928 [Token(Token = "0x6000647")] [Address(RVA = "0xB975A0", Offset = "0xB965A0", VA = "0x180B975A0", 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: 0x06000648 RID: 1608 RVA: 0x00004740 File Offset: 0x00002940 [Token(Token = "0x6000648")] [Address(RVA = "0xB97650", Offset = "0xB96650", VA = "0x180B97650", Slot = "5")] public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { return default(bool); } /// Converts the specified value object to a . /// An that provides a format context. /// A that specifies the culture to which to convert. /// The to convert. /// An that represents the converted value. /// /// specifies a culture that is not valid. /// The conversion cannot be performed. // Token: 0x06000649 RID: 1609 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000649")] [Address(RVA = "0xB97700", Offset = "0xB96700", VA = "0x180B97700", Slot = "6")] public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { return null; } /// Converts the given value object to the specified destination type. /// An that provides a format context. /// A that specifies the culture to which to convert. /// The to convert. /// The to convert the value to. /// An that represents the converted . /// /// is . /// The conversion cannot be performed. // Token: 0x0600064A RID: 1610 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600064A")] [Address(RVA = "0xB97D80", Offset = "0xB96D80", VA = "0x180B97D80", Slot = "7")] public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { return null; } /// Gets a collection of standard values for a object using the specified context. /// An that provides a format context. /// A containing a standard set of valid values, or if the data type does not support a standard set of values. // Token: 0x0600064B RID: 1611 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600064B")] [Address(RVA = "0xB98260", Offset = "0xB97260", VA = "0x180B98260", Slot = "12")] public override TypeConverter.StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) { return null; } /// Gets a value indicating whether the list of standard values returned from is an exhaustive list. /// An that provides a format context. /// /// because the returned from is not an exhaustive list of possible values (that is, other values are possible). This method never returns . // Token: 0x0600064C RID: 1612 RVA: 0x00004758 File Offset: 0x00002958 [Token(Token = "0x600064C")] [Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", 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 using the specified context. /// An that provides a format context. /// /// because should be called to find a common set of values the object supports. This method never returns . // Token: 0x0600064D RID: 1613 RVA: 0x00004770 File Offset: 0x00002970 [Token(Token = "0x600064D")] [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: 0x0600064E RID: 1614 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600064E")] [Address(RVA = "0xB98440", Offset = "0xB97440", VA = "0x180B98440")] public CultureInfoConverter() { } // Token: 0x0400048C RID: 1164 [FieldOffset(Offset = "0x10")] [Token(Token = "0x400048C")] private TypeConverter.StandardValuesCollection values; // Token: 0x02000101 RID: 257 [Token(Token = "0x2000101")] private class CultureComparer : IComparer { // Token: 0x0600064F RID: 1615 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600064F")] [Address(RVA = "0x493D90", Offset = "0x492D90", VA = "0x180493D90")] public CultureComparer(CultureInfoConverter cultureConverter) { } // Token: 0x06000650 RID: 1616 RVA: 0x00004788 File Offset: 0x00002988 [Token(Token = "0x6000650")] [Address(RVA = "0xB973C0", Offset = "0xB963C0", VA = "0x180B973C0", Slot = "4")] public int Compare(object item1, object item2) { return 0; } // Token: 0x0400048D RID: 1165 [FieldOffset(Offset = "0x10")] [Token(Token = "0x400048D")] private CultureInfoConverter converter; } // Token: 0x02000102 RID: 258 [Token(Token = "0x2000102")] private static class CultureInfoMapper { // Token: 0x06000651 RID: 1617 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000651")] [Address(RVA = "0xB984D0", Offset = "0xB974D0", VA = "0x180B984D0")] public static string GetCultureInfoName(string cultureInfoDisplayName) { return null; } // Token: 0x06000652 RID: 1618 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000652")] [Address(RVA = "0xB985A0", Offset = "0xB975A0", VA = "0x180B985A0")] private static void InitializeCultureInfoMap() { } // Token: 0x0400048E RID: 1166 [Token(Token = "0x400048E")] private static Dictionary cultureInfoNameMap; } } }