using System; using Cpp2IlInjected; namespace System.ComponentModel.Design.Serialization { /// Indicates a serializer for the serialization manager to use to serialize the values of the type this attribute is applied to. This class cannot be inherited. // Token: 0x020001C9 RID: 457 [Token(Token = "0x20001C9")] [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface)] public sealed class DesignerSerializerAttribute : Attribute { /// Initializes a new instance of the class. /// The fully qualified name of the data type of the serializer. /// The fully qualified name of the base data type of the serializer. Multiple serializers can be supplied for a class as long as the serializers have different base types. // Token: 0x06000C37 RID: 3127 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000C37")] [Address(RVA = "0x497CA0", Offset = "0x496AA0", VA = "0x180497CA0")] public DesignerSerializerAttribute(string serializerTypeName, string baseSerializerTypeName) { } /// Indicates a unique ID for this attribute type. /// A unique ID for this attribute type. // Token: 0x17000236 RID: 566 // (get) Token: 0x06000C38 RID: 3128 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000236")] public override object TypeId { [Token(Token = "0x6000C38")] [Address(RVA = "0x4E8920", Offset = "0x4E7720", VA = "0x1804E8920", Slot = "4")] get { return null; } } // Token: 0x04000659 RID: 1625 [FieldOffset(Offset = "0x10")] [Token(Token = "0x4000659")] private string serializerTypeName; // Token: 0x0400065A RID: 1626 [FieldOffset(Offset = "0x18")] [Token(Token = "0x400065A")] private string serializerBaseTypeName; // Token: 0x0400065B RID: 1627 [FieldOffset(Offset = "0x20")] [Token(Token = "0x400065B")] private string typeId; } }