oh dear
This commit is contained in:
@@ -0,0 +1,121 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.ComponentModel
|
||||
{
|
||||
/// <summary>Specifies a property that is offered by an extender provider. This class cannot be inherited.</summary>
|
||||
// Token: 0x0200012A RID: 298
|
||||
[Token(Token = "0x200012A")]
|
||||
[AttributeUsage(AttributeTargets.All)]
|
||||
public sealed class ExtenderProvidedPropertyAttribute : Attribute
|
||||
{
|
||||
// Token: 0x06000777 RID: 1911 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000777")]
|
||||
[Address(RVA = "0x4ED720", Offset = "0x4EC520", VA = "0x1804ED720")]
|
||||
internal static ExtenderProvidedPropertyAttribute Create(PropertyDescriptor extenderProperty, Type receiverType, IExtenderProvider provider)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ExtenderProvidedPropertyAttribute" /> class.</summary>
|
||||
// Token: 0x06000778 RID: 1912 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000778")]
|
||||
[Address(RVA = "0x4093D0", Offset = "0x4081D0", VA = "0x1804093D0")]
|
||||
public ExtenderProvidedPropertyAttribute()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the property that is being provided.</summary>
|
||||
/// <returns>A <see cref="T:System.ComponentModel.PropertyDescriptor" /> encapsulating the property that is being provided.</returns>
|
||||
// Token: 0x1700015A RID: 346
|
||||
// (get) Token: 0x06000779 RID: 1913 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700015A")]
|
||||
public PropertyDescriptor ExtenderProperty
|
||||
{
|
||||
[Token(Token = "0x6000779")]
|
||||
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the extender provider that is providing the property.</summary>
|
||||
/// <returns>The <see cref="T:System.ComponentModel.IExtenderProvider" /> that is providing the property.</returns>
|
||||
// Token: 0x1700015B RID: 347
|
||||
// (get) Token: 0x0600077A RID: 1914 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700015B")]
|
||||
public IExtenderProvider Provider
|
||||
{
|
||||
[Token(Token = "0x600077A")]
|
||||
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the type of object that can receive the property.</summary>
|
||||
/// <returns>A <see cref="T:System.Type" /> describing the type of object that can receive the property.</returns>
|
||||
// Token: 0x1700015C RID: 348
|
||||
// (get) Token: 0x0600077B RID: 1915 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700015C")]
|
||||
public Type ReceiverType
|
||||
{
|
||||
[Token(Token = "0x600077B")]
|
||||
[Address(RVA = "0x3F6400", Offset = "0x3F5200", VA = "0x1803F6400")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Returns a value that indicates whether this instance is equal to a specified object.</summary>
|
||||
/// <param name="obj">An <see cref="T:System.Object" /> to compare with this instance or a null reference (<see langword="Nothing" /> in Visual Basic).</param>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if <paramref name="obj" /> equals the type and value of this instance; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x0600077C RID: 1916 RVA: 0x00004F20 File Offset: 0x00003120
|
||||
[Token(Token = "0x600077C")]
|
||||
[Address(RVA = "0x4ED7A0", Offset = "0x4EC5A0", VA = "0x1804ED7A0", 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: 0x0600077D RID: 1917 RVA: 0x00004F38 File Offset: 0x00003138
|
||||
[Token(Token = "0x600077D")]
|
||||
[Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", Slot = "2")]
|
||||
public override int GetHashCode()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// <summary>Provides an indication whether the value of this instance is the default value for the derived class.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if this instance is the default attribute for the class; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x0600077E RID: 1918 RVA: 0x00004F50 File Offset: 0x00003150
|
||||
[Token(Token = "0x600077E")]
|
||||
[Address(RVA = "0x4ED890", Offset = "0x4EC690", VA = "0x1804ED890", Slot = "6")]
|
||||
public override bool IsDefaultAttribute()
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x040004EF RID: 1263
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x40004EF")]
|
||||
private PropertyDescriptor extenderProperty;
|
||||
|
||||
// Token: 0x040004F0 RID: 1264
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x40004F0")]
|
||||
private IExtenderProvider provider;
|
||||
|
||||
// Token: 0x040004F1 RID: 1265
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x40004F1")]
|
||||
private Type receiverType;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user