using System;
using System.Globalization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Provides a type converter to convert collection objects to and from various other representations.
// Token: 0x020000FA RID: 250
[Token(Token = "0x20000FA")]
public class CollectionConverter : TypeConverter
{
/// Converts the given value object to the specified destination type.
/// An that provides a format context.
/// The culture to which will be converted.
/// The to convert. This parameter must inherit from .
/// The to convert the value to.
/// An that represents the converted value.
///
/// is .
/// The conversion cannot be performed.
// Token: 0x0600061A RID: 1562 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600061A")]
[Address(RVA = "0x4975C0", Offset = "0x4963C0", VA = "0x1804975C0", Slot = "7")]
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
{
return null;
}
/// Gets 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 to get the properties for.
/// An array of type that will be used as a filter.
/// A with the properties that are exposed for this data type, or if there are no properties. This method always returns .
// Token: 0x0600061B RID: 1563 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600061B")]
[Address(RVA = "0x43E630", Offset = "0x43D430", VA = "0x18043E630", Slot = "10")]
public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes)
{
return null;
}
/// Gets a value indicating whether this object supports properties.
/// An that provides a format context.
///
/// because should not be called to find the properties of this object. This method never returns .
// Token: 0x0600061C RID: 1564 RVA: 0x00004680 File Offset: 0x00002880
[Token(Token = "0x600061C")]
[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: 0x0600061D RID: 1565 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600061D")]
[Address(RVA = "0x490E60", Offset = "0x48FC60", VA = "0x180490E60")]
public CollectionConverter()
{
}
}
}