using System; using System.ComponentModel; using System.Globalization; using Cpp2IlInjected; namespace System { /// Converts a type to a type, and vice versa. // Token: 0x02000098 RID: 152 [Token(Token = "0x2000098")] public class UriTypeConverter : TypeConverter { /// Initializes a new instance of the class. // Token: 0x060002ED RID: 749 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60002ED")] [Address(RVA = "0x721360", Offset = "0x720160", VA = "0x180721360")] public UriTypeConverter() { } // Token: 0x060002EE RID: 750 RVA: 0x00003258 File Offset: 0x00001458 [Token(Token = "0x60002EE")] [Address(RVA = "0x720E90", Offset = "0x71FC90", VA = "0x180720E90")] private bool CanConvert(Type type) { return default(bool); } /// Returns whether this converter can convert an object of the given type to the type of this converter. /// An that provides a format context. /// A that represents the type that you want to convert from. /// /// if is a type or a type can be assigned from ; otherwise, . /// The parameter is . // Token: 0x060002EF RID: 751 RVA: 0x00003270 File Offset: 0x00001470 [Token(Token = "0x60002EF")] [Address(RVA = "0x720D60", Offset = "0x71FB60", VA = "0x180720D60", Slot = "4")] public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { return default(bool); } /// 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 that you want to convert to. /// /// if is of type , , or ; otherwise, . // Token: 0x060002F0 RID: 752 RVA: 0x00003288 File Offset: 0x00001488 [Token(Token = "0x60002F0")] [Address(RVA = "0x720E10", Offset = "0x71FC10", VA = "0x180720E10", Slot = "5")] public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { 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: 0x060002F1 RID: 753 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60002F1")] [Address(RVA = "0x720F60", Offset = "0x71FD60", VA = "0x180720F60", Slot = "6")] public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { return null; } /// Converts a given value object to the specified type, using the specified context and culture information. /// An that provides a format context. /// A . If is passed, the current culture is assumed. /// The to convert. /// The to convert the parameter to. /// An that represents the converted value. /// The parameter is . /// The conversion cannot be performed. // Token: 0x060002F2 RID: 754 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60002F2")] [Address(RVA = "0x721110", Offset = "0x71FF10", VA = "0x180721110", Slot = "7")] public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { return null; } } }