using System;
using System.Globalization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Provides a type converter to convert multiline strings to a simple string.
// Token: 0x0200016A RID: 362
[Token(Token = "0x200016A")]
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: 0x06000922 RID: 2338 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000922")]
[Address(RVA = "0xC66770", Offset = "0xC65770", VA = "0x180C66770", 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: 0x06000923 RID: 2339 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000923")]
[Address(RVA = "0x4242C0", Offset = "0x4232C0", VA = "0x1804242C0", 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: 0x06000924 RID: 2340 RVA: 0x00005B80 File Offset: 0x00003D80
[Token(Token = "0x6000924")]
[Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", Slot = "11")]
public override bool GetPropertiesSupported(ITypeDescriptorContext context)
{
return default(bool);
}
/// Initializes a new instance of the class.
// Token: 0x06000925 RID: 2341 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000925")]
[Address(RVA = "0xC668C0", Offset = "0xC658C0", VA = "0x180C668C0")]
public MultilineStringConverter()
{
}
}
}