using System; using System.Collections; using System.Globalization; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides automatic conversion between a nullable type and its underlying primitive type. // Token: 0x0200016D RID: 365 [Token(Token = "0x200016D")] public class NullableConverter : TypeConverter { /// Initializes a new instance of the class. /// The specified nullable type. /// /// is not a nullable type. // Token: 0x06000935 RID: 2357 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000935")] [Address(RVA = "0xC67830", Offset = "0xC66830", VA = "0x180C67830")] public NullableConverter(Type type) { } /// Returns whether this converter can convert an object of the given type to the type of this converter, using the specified context. /// An that provides a format context. /// A that represents the type you want to convert from. /// /// if this converter can perform the conversion; otherwise, . // Token: 0x06000936 RID: 2358 RVA: 0x00005BB0 File Offset: 0x00003DB0 [Token(Token = "0x6000936")] [Address(RVA = "0xC66E80", Offset = "0xC65E80", VA = "0x180C66E80", Slot = "4")] public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { return default(bool); } /// Converts the given object to the type of this converter, using the specified context and culture information. /// An that provides a format context. /// The to use as the current culture. /// The to convert. /// An that represents the converted value. /// The conversion cannot be performed. // Token: 0x06000937 RID: 2359 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000937")] [Address(RVA = "0xC67040", Offset = "0xC66040", VA = "0x180C67040", Slot = "6")] public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { return null; } /// Returns whether this converter can convert the object to the specified type, using the specified context. /// An that provides a format context. /// A that represents the type you want to convert to. /// /// if this converter can perform the conversion; otherwise, . // Token: 0x06000938 RID: 2360 RVA: 0x00005BC8 File Offset: 0x00003DC8 [Token(Token = "0x6000938")] [Address(RVA = "0xC66F40", Offset = "0xC65F40", VA = "0x180C66F40", Slot = "5")] public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { return default(bool); } /// Converts the given value object to the specified type, using the specified context and culture information. /// An that provides a format context. /// The to use as the current culture. /// The to convert. /// The to convert the value parameter to. /// An that represents the converted value. /// /// is . /// The conversion cannot be performed. // Token: 0x06000939 RID: 2361 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000939")] [Address(RVA = "0xC67170", Offset = "0xC66170", VA = "0x180C67170", Slot = "7")] public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { return null; } /// Creates an instance of the type that this is associated with, using the specified context, given a set of property values for the object. /// An that provides a format context. /// An of new property values. /// An representing the given , or if the object cannot be created. This method always returns . // Token: 0x0600093A RID: 2362 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600093A")] [Address(RVA = "0xC674B0", Offset = "0xC664B0", VA = "0x180C674B0", Slot = "8")] public override object CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) { return null; } /// Returns whether changing a value on this object requires a call to to create a new value, using the specified context. /// An that provides a format context. /// /// if changing a property on this object requires a call to to create a new value; otherwise, . // Token: 0x0600093B RID: 2363 RVA: 0x00005BE0 File Offset: 0x00003DE0 [Token(Token = "0x600093B")] [Address(RVA = "0xC674E0", Offset = "0xC664E0", VA = "0x180C674E0", Slot = "9")] public override bool GetCreateInstanceSupported(ITypeDescriptorContext context) { return default(bool); } /// Returns a collection of properties for the type of array specified by the value parameter, using the specified context and attributes. /// An that provides a format context. /// An that specifies the type of array for which to get properties. /// An array of type that is used as a filter. /// A with the properties that are exposed for this data type, or if there are no properties. // Token: 0x0600093C RID: 2364 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600093C")] [Address(RVA = "0xC67540", Offset = "0xC66540", VA = "0x180C67540", Slot = "10")] public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { return null; } /// Returns whether this object supports properties, using the specified context. /// An that provides a format context. /// /// if should be called to find the properties of this object; otherwise, . // Token: 0x0600093D RID: 2365 RVA: 0x00005BF8 File Offset: 0x00003DF8 [Token(Token = "0x600093D")] [Address(RVA = "0xC67510", Offset = "0xC66510", VA = "0x180C67510", Slot = "11")] public override bool GetPropertiesSupported(ITypeDescriptorContext context) { return default(bool); } /// Returns a collection of standard values for the data type this type converter is designed for when provided with a format context. /// An that provides a format context that can be used to extract additional information about the environment from which this converter is invoked. This parameter or properties of this parameter can be . /// A that holds a standard set of valid values, or if the data type does not support a standard set of values. // Token: 0x0600093E RID: 2366 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600093E")] [Address(RVA = "0xC675D0", Offset = "0xC665D0", VA = "0x180C675D0", Slot = "12")] public override TypeConverter.StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) { return null; } /// Returns whether the collection of standard values returned from is an exclusive list of possible values, using the specified context. /// An that provides a format context. /// /// if the returned from is an exhaustive list of possible values; if other values are possible. // Token: 0x0600093F RID: 2367 RVA: 0x00005C10 File Offset: 0x00003E10 [Token(Token = "0x600093F")] [Address(RVA = "0xC67570", Offset = "0xC66570", VA = "0x180C67570", Slot = "13")] public override bool GetStandardValuesExclusive(ITypeDescriptorContext context) { return default(bool); } /// Returns 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. /// /// if should be called to find a common set of values the object supports; otherwise, . // Token: 0x06000940 RID: 2368 RVA: 0x00005C28 File Offset: 0x00003E28 [Token(Token = "0x6000940")] [Address(RVA = "0xC675A0", Offset = "0xC665A0", VA = "0x180C675A0", Slot = "14")] public override bool GetStandardValuesSupported(ITypeDescriptorContext context) { return default(bool); } /// Returns whether the given value object is valid for this type and for the specified context. /// An that provides a format context. /// The to test for validity. /// /// if the specified value is valid for this object; otherwise, . // Token: 0x06000941 RID: 2369 RVA: 0x00005C40 File Offset: 0x00003E40 [Token(Token = "0x6000941")] [Address(RVA = "0xC67800", Offset = "0xC66800", VA = "0x180C67800", Slot = "15")] public override bool IsValid(ITypeDescriptorContext context, object value) { return default(bool); } /// Gets the nullable type. /// A that represents the nullable type. // Token: 0x170001CA RID: 458 // (get) Token: 0x06000942 RID: 2370 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170001CA")] public Type NullableType { [Token(Token = "0x6000942")] [Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")] get { return null; } } /// Gets the underlying type. /// A that represents the underlying type. // Token: 0x170001CB RID: 459 // (get) Token: 0x06000943 RID: 2371 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170001CB")] public Type UnderlyingType { [Token(Token = "0x6000943")] [Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")] get { return null; } } /// Gets the underlying type converter. /// A that represents the underlying type converter. // Token: 0x170001CC RID: 460 // (get) Token: 0x06000944 RID: 2372 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170001CC")] public TypeConverter UnderlyingTypeConverter { [Token(Token = "0x6000944")] [Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0")] get { return null; } } // Token: 0x04000578 RID: 1400 [FieldOffset(Offset = "0x10")] [Token(Token = "0x4000578")] private Type nullableType; // Token: 0x04000579 RID: 1401 [FieldOffset(Offset = "0x18")] [Token(Token = "0x4000579")] private Type simpleType; // Token: 0x0400057A RID: 1402 [FieldOffset(Offset = "0x20")] [Token(Token = "0x400057A")] private TypeConverter simpleTypeConverter; } }