using System; using System.Globalization; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides a type converter to convert multiline strings to a simple string. // Token: 0x0200016E RID: 366 [Token(Token = "0x200016E")] public class MultilineStringConverter : TypeConverter { /// Converts the 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 value parameter to. /// An that represents the converted value. /// /// is . /// The conversion cannot be performed. // Token: 0x06000938 RID: 2360 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000938")] [Address(RVA = "0x4FC420", Offset = "0x4FB220", VA = "0x1804FC420", Slot = "7")] public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { return null; } /// Returns a collection of properties for the type of array specified by the 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: 0x06000939 RID: 2361 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000939")] [Address(RVA = "0x43E630", Offset = "0x43D430", VA = "0x18043E630", 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: 0x0600093A RID: 2362 RVA: 0x00005B98 File Offset: 0x00003D98 [Token(Token = "0x600093A")] [Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "11")] public override bool GetPropertiesSupported(ITypeDescriptorContext context) { return default(bool); } /// Initializes a new instance of the class. // Token: 0x0600093B RID: 2363 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600093B")] [Address(RVA = "0x4FC570", Offset = "0x4FB370", VA = "0x1804FC570")] public MultilineStringConverter() { } } }