using System; using System.Globalization; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides a type converter to convert objects to and from various other representations. // Token: 0x0200012B RID: 299 [Token(Token = "0x200012B")] 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: 0x0600077F RID: 1919 RVA: 0x00004F68 File Offset: 0x00003168 [Token(Token = "0x600077F")] [Address(RVA = "0x4ED8F0", Offset = "0x4EC6F0", VA = "0x1804ED8F0", 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: 0x06000780 RID: 1920 RVA: 0x00004F80 File Offset: 0x00003180 [Token(Token = "0x6000780")] [Address(RVA = "0x4ED9A0", Offset = "0x4EC7A0", VA = "0x1804ED9A0", 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: 0x06000781 RID: 1921 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000781")] [Address(RVA = "0x4EDA50", Offset = "0x4EC850", VA = "0x1804EDA50", 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: 0x06000782 RID: 1922 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000782")] [Address(RVA = "0x4EDB30", Offset = "0x4EC930", VA = "0x1804EDB30", Slot = "7")] public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { return null; } /// Initializes a new instance of the class. // Token: 0x06000783 RID: 1923 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000783")] [Address(RVA = "0x4EDE10", Offset = "0x4ECC10", VA = "0x1804EDE10")] public GuidConverter() { } } }