using System; using System.Globalization; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides a type converter to convert objects to and from various other representations. // Token: 0x02000127 RID: 295 [Token(Token = "0x2000127")] public class GuidConverter : TypeConverter { /// Gets a value indicating whether this converter can convert an object in the given source type to a GUID object using the context. /// An that provides a format context. /// A that represents the type you wish to convert from. /// /// if this converter can perform the conversion; otherwise, . // Token: 0x06000769 RID: 1897 RVA: 0x00004F50 File Offset: 0x00003150 [Token(Token = "0x6000769")] [Address(RVA = "0xC57CF0", Offset = "0xC56CF0", VA = "0x180C57CF0", Slot = "4")] public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { return default(bool); } /// Gets a value indicating whether this converter can convert an object to the given destination type using the context. /// An that provides a format context. /// A that represents the type you wish to convert to. /// /// if this converter can perform the conversion; otherwise, . // Token: 0x0600076A RID: 1898 RVA: 0x00004F68 File Offset: 0x00003168 [Token(Token = "0x600076A")] [Address(RVA = "0xC57DA0", Offset = "0xC56DA0", VA = "0x180C57DA0", Slot = "5")] public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { return default(bool); } /// Converts the given object to a GUID object. /// An that provides a format context. /// An optional . If not supplied, the current culture is assumed. /// The to convert. /// An that represents the converted . /// The conversion cannot be performed. // Token: 0x0600076B RID: 1899 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600076B")] [Address(RVA = "0xC57E50", Offset = "0xC56E50", VA = "0x180C57E50", Slot = "6")] public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { return null; } /// Converts the given object to another type. /// A formatter context. /// The culture into which will be converted. /// The object to convert. /// The type to convert the object to. /// The converted object. /// /// is . /// The conversion cannot be performed. // Token: 0x0600076C RID: 1900 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600076C")] [Address(RVA = "0xC57F30", Offset = "0xC56F30", VA = "0x180C57F30", Slot = "7")] public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { return null; } /// Initializes a new instance of the class. // Token: 0x0600076D RID: 1901 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600076D")] [Address(RVA = "0xC58210", Offset = "0xC57210", VA = "0x180C58210")] public GuidConverter() { } } }