using System;
using System.Globalization;
namespace System.ComponentModel
{
/// Provides a type converter to convert multiline strings to a simple string.
// Token: 0x020000AF RID: 175
public class MultilineStringConverter : TypeConverter
{
/// Converts the given value object to the specified type, using the specified context and culture information.
/// An that represents the converted value.
/// An that provides a format context.
/// A . If null is passed, the current culture is assumed.
/// The to convert.
/// The to convert the value parameter to.
///
/// is null.
/// The conversion cannot be performed.
// Token: 0x060005AD RID: 1453 RVA: 0x0000EB94 File Offset: 0x0000CD94
[global::System.MonoTODO]
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
{
throw new NotImplementedException();
}
/// Returns a collection of properties for the type of array specified by the parameter, using the specified context and attributes.
/// A with the properties that are exposed for this data type, or null if there are no properties.
/// 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.
// Token: 0x060005AE RID: 1454 RVA: 0x0000EB9C File Offset: 0x0000CD9C
[global::System.MonoTODO]
public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes)
{
throw new NotImplementedException();
}
/// Returns whether this object supports properties, using the specified context.
/// true if should be called to find the properties of this object; otherwise, false.
/// An that provides a format context.
// Token: 0x060005AF RID: 1455 RVA: 0x0000EBA4 File Offset: 0x0000CDA4
[global::System.MonoTODO]
public override bool GetPropertiesSupported(ITypeDescriptorContext context)
{
throw new NotImplementedException();
}
}
}