using System;
using System.Globalization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Provides a type converter to convert structures to and from various other representations.
// Token: 0x0200010A RID: 266
[Token(Token = "0x200010A")]
public class DateTimeOffsetConverter : TypeConverter
{
/// Returns a value that indicates whether an object of the specified source type can be converted to a .
/// The date format context.
/// The source type to check.
///
/// if the specified type can be converted to a ; otherwise, .
// Token: 0x06000680 RID: 1664 RVA: 0x00004938 File Offset: 0x00002B38
[Token(Token = "0x6000680")]
[Address(RVA = "0xB9C320", Offset = "0xB9B320", VA = "0x180B9C320", Slot = "4")]
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
{
return default(bool);
}
/// Returns a value that indicates whether a can be converted to an object of the specified type.
/// The date format context.
/// The destination type to check.
///
/// if a can be converted to the specified type; otherwise, .
// Token: 0x06000681 RID: 1665 RVA: 0x00004950 File Offset: 0x00002B50
[Token(Token = "0x6000681")]
[Address(RVA = "0xB9C3D0", Offset = "0xB9B3D0", VA = "0x180B9C3D0", Slot = "5")]
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
{
return default(bool);
}
/// Converts the specified object to a .
/// The date format context.
/// The date culture.
/// The object to be converted.
/// A that represents the specified object.
/// The conversion cannot be performed.
// Token: 0x06000682 RID: 1666 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000682")]
[Address(RVA = "0xB9C480", Offset = "0xB9B480", VA = "0x180B9C480", Slot = "6")]
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
return null;
}
/// Converts a to an object of the specified type.
/// The date format context.
/// The date culture.
/// The to be converted.
/// The type to convert to.
/// An object of the specified type that represents the .
/// The conversion cannot be performed.
// Token: 0x06000683 RID: 1667 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000683")]
[Address(RVA = "0xB9C780", Offset = "0xB9B780", VA = "0x180B9C780", Slot = "7")]
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
{
return null;
}
/// Initializes a new instance of the class.
// Token: 0x06000684 RID: 1668 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000684")]
[Address(RVA = "0xB9D340", Offset = "0xB9C340", VA = "0x180B9D340")]
public DateTimeOffsetConverter()
{
}
}
}