oh dear
This commit is contained in:
@@ -0,0 +1,142 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.ComponentModel
|
||||
{
|
||||
/// <summary>Specifies the class used to implement design-time services for a component.</summary>
|
||||
// Token: 0x02000118 RID: 280
|
||||
[Token(Token = "0x2000118")]
|
||||
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface)]
|
||||
public sealed class DesignerAttribute : Attribute
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DesignerAttribute" /> class using the name of the type that provides design-time services.</summary>
|
||||
/// <param name="designerTypeName">The concatenation of the fully qualified name of the type that provides design-time services for the component this attribute is bound to, and the name of the assembly this type resides in.</param>
|
||||
// Token: 0x060006E4 RID: 1764 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60006E4")]
|
||||
[Address(RVA = "0x4E8740", Offset = "0x4E7540", VA = "0x1804E8740")]
|
||||
public DesignerAttribute(string designerTypeName)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DesignerAttribute" /> class using the type that provides design-time services.</summary>
|
||||
/// <param name="designerType">A <see cref="T:System.Type" /> that represents the class that provides design-time services for the component this attribute is bound to.</param>
|
||||
// Token: 0x060006E5 RID: 1765 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60006E5")]
|
||||
[Address(RVA = "0x4E85E0", Offset = "0x4E73E0", VA = "0x1804E85E0")]
|
||||
public DesignerAttribute(Type designerType)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DesignerAttribute" /> class using the designer type and the base class for the designer.</summary>
|
||||
/// <param name="designerTypeName">The concatenation of the fully qualified name of the type that provides design-time services for the component this attribute is bound to, and the name of the assembly this type resides in.</param>
|
||||
/// <param name="designerBaseTypeName">The fully qualified name of the base class to associate with the designer class.</param>
|
||||
// Token: 0x060006E6 RID: 1766 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60006E6")]
|
||||
[Address(RVA = "0x4E8810", Offset = "0x4E7610", VA = "0x1804E8810")]
|
||||
public DesignerAttribute(string designerTypeName, string designerBaseTypeName)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DesignerAttribute" /> class, using the name of the designer class and the base class for the designer.</summary>
|
||||
/// <param name="designerTypeName">The concatenation of the fully qualified name of the type that provides design-time services for the component this attribute is bound to, and the name of the assembly this type resides in.</param>
|
||||
/// <param name="designerBaseType">A <see cref="T:System.Type" /> that represents the base class to associate with the <paramref name="designerTypeName" />.</param>
|
||||
// Token: 0x060006E7 RID: 1767 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60006E7")]
|
||||
[Address(RVA = "0x4E8690", Offset = "0x4E7490", VA = "0x1804E8690")]
|
||||
public DesignerAttribute(string designerTypeName, Type designerBaseType)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DesignerAttribute" /> class using the types of the designer and designer base class.</summary>
|
||||
/// <param name="designerType">A <see cref="T:System.Type" /> that represents the class that provides design-time services for the component this attribute is bound to.</param>
|
||||
/// <param name="designerBaseType">A <see cref="T:System.Type" /> that represents the base class to associate with the <paramref name="designerType" />.</param>
|
||||
// Token: 0x060006E8 RID: 1768 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60006E8")]
|
||||
[Address(RVA = "0x4E88B0", Offset = "0x4E76B0", VA = "0x1804E88B0")]
|
||||
public DesignerAttribute(Type designerType, Type designerBaseType)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the name of the base type of this designer.</summary>
|
||||
/// <returns>The name of the base type of this designer.</returns>
|
||||
// Token: 0x17000136 RID: 310
|
||||
// (get) Token: 0x060006E9 RID: 1769 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000136")]
|
||||
public string DesignerBaseTypeName
|
||||
{
|
||||
[Token(Token = "0x60006E9")]
|
||||
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the name of the designer type associated with this designer attribute.</summary>
|
||||
/// <returns>The name of the designer type associated with this designer attribute.</returns>
|
||||
// Token: 0x17000137 RID: 311
|
||||
// (get) Token: 0x060006EA RID: 1770 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000137")]
|
||||
public string DesignerTypeName
|
||||
{
|
||||
[Token(Token = "0x60006EA")]
|
||||
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets a unique ID for this attribute type.</summary>
|
||||
/// <returns>A unique ID for this attribute type.</returns>
|
||||
// Token: 0x17000138 RID: 312
|
||||
// (get) Token: 0x060006EB RID: 1771 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000138")]
|
||||
public override object TypeId
|
||||
{
|
||||
[Token(Token = "0x60006EB")]
|
||||
[Address(RVA = "0x4E8920", Offset = "0x4E7720", VA = "0x1804E8920", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Returns whether the value of the given object is equal to the current <see cref="T:System.ComponentModel.DesignerAttribute" />.</summary>
|
||||
/// <param name="obj">The object to test the value equality of.</param>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the value of the given object is equal to that of the current; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x060006EC RID: 1772 RVA: 0x00004B90 File Offset: 0x00002D90
|
||||
[Token(Token = "0x60006EC")]
|
||||
[Address(RVA = "0x4E8530", Offset = "0x4E7330", VA = "0x1804E8530", Slot = "0")]
|
||||
public override bool Equals(object obj)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>Returns the hash code for this instance.</summary>
|
||||
/// <returns>A 32-bit signed integer hash code.</returns>
|
||||
// Token: 0x060006ED RID: 1773 RVA: 0x00004BA8 File Offset: 0x00002DA8
|
||||
[Token(Token = "0x60006ED")]
|
||||
[Address(RVA = "0x4C8590", Offset = "0x4C7390", VA = "0x1804C8590", Slot = "2")]
|
||||
public override int GetHashCode()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x040004C0 RID: 1216
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x40004C0")]
|
||||
private readonly string designerTypeName;
|
||||
|
||||
// Token: 0x040004C1 RID: 1217
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x40004C1")]
|
||||
private readonly string designerBaseTypeName;
|
||||
|
||||
// Token: 0x040004C2 RID: 1218
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x40004C2")]
|
||||
private string typeId;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user