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: 0x02000171 RID: 369 [Token(Token = "0x2000171")] public class NullableConverter : TypeConverter { /// Initializes a new instance of the class. /// The specified nullable type. /// /// is not a nullable type. // Token: 0x0600094B RID: 2379 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600094B")] [Address(RVA = "0x4FD4E0", Offset = "0x4FC2E0", VA = "0x1804FD4E0")] 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: 0x0600094C RID: 2380 RVA: 0x00005BC8 File Offset: 0x00003DC8 [Token(Token = "0x600094C")] [Address(RVA = "0x4FCB30", Offset = "0x4FB930", VA = "0x1804FCB30", 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: 0x0600094D RID: 2381 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600094D")] [Address(RVA = "0x4FCCF0", Offset = "0x4FBAF0", VA = "0x1804FCCF0", 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: 0x0600094E RID: 2382 RVA: 0x00005BE0 File Offset: 0x00003DE0 [Token(Token = "0x600094E")] [Address(RVA = "0x4FCBF0", Offset = "0x4FB9F0", VA = "0x1804FCBF0", 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: 0x0600094F RID: 2383 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600094F")] [Address(RVA = "0x4FCE20", Offset = "0x4FBC20", VA = "0x1804FCE20", 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: 0x06000950 RID: 2384 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000950")] [Address(RVA = "0x4FD160", Offset = "0x4FBF60", VA = "0x1804FD160", 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: 0x06000951 RID: 2385 RVA: 0x00005BF8 File Offset: 0x00003DF8 [Token(Token = "0x6000951")] [Address(RVA = "0x4FD190", Offset = "0x4FBF90", VA = "0x1804FD190", 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: 0x06000952 RID: 2386 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000952")] [Address(RVA = "0x4FD1F0", Offset = "0x4FBFF0", VA = "0x1804FD1F0", 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: 0x06000953 RID: 2387 RVA: 0x00005C10 File Offset: 0x00003E10 [Token(Token = "0x6000953")] [Address(RVA = "0x4FD1C0", Offset = "0x4FBFC0", VA = "0x1804FD1C0", 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: 0x06000954 RID: 2388 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000954")] [Address(RVA = "0x4FD280", Offset = "0x4FC080", VA = "0x1804FD280", 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: 0x06000955 RID: 2389 RVA: 0x00005C28 File Offset: 0x00003E28 [Token(Token = "0x6000955")] [Address(RVA = "0x4FD220", Offset = "0x4FC020", VA = "0x1804FD220", 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: 0x06000956 RID: 2390 RVA: 0x00005C40 File Offset: 0x00003E40 [Token(Token = "0x6000956")] [Address(RVA = "0x4FD250", Offset = "0x4FC050", VA = "0x1804FD250", 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: 0x06000957 RID: 2391 RVA: 0x00005C58 File Offset: 0x00003E58 [Token(Token = "0x6000957")] [Address(RVA = "0x4FD4B0", Offset = "0x4FC2B0", VA = "0x1804FD4B0", Slot = "15")] public override bool IsValid(ITypeDescriptorContext context, object value) { return default(bool); } /// Gets the nullable type. /// A that represents the nullable type. // Token: 0x170001CE RID: 462 // (get) Token: 0x06000958 RID: 2392 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170001CE")] public Type NullableType { [Token(Token = "0x6000958")] [Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")] get { return null; } } /// Gets the underlying type. /// A that represents the underlying type. // Token: 0x170001CF RID: 463 // (get) Token: 0x06000959 RID: 2393 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170001CF")] public Type UnderlyingType { [Token(Token = "0x6000959")] [Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")] get { return null; } } /// Gets the underlying type converter. /// A that represents the underlying type converter. // Token: 0x170001D0 RID: 464 // (get) Token: 0x0600095A RID: 2394 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170001D0")] public TypeConverter UnderlyingTypeConverter { [Token(Token = "0x600095A")] [Address(RVA = "0x3F6400", Offset = "0x3F5200", VA = "0x1803F6400")] get { return null; } } // Token: 0x04000585 RID: 1413 [FieldOffset(Offset = "0x10")] [Token(Token = "0x4000585")] private Type nullableType; // Token: 0x04000586 RID: 1414 [FieldOffset(Offset = "0x18")] [Token(Token = "0x4000586")] private Type simpleType; // Token: 0x04000587 RID: 1415 [FieldOffset(Offset = "0x20")] [Token(Token = "0x4000587")] private TypeConverter simpleTypeConverter; } }