122 lines
4.6 KiB
C#
122 lines
4.6 KiB
C#
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: 0x02000126 RID: 294
|
|
[Token(Token = "0x2000126")]
|
|
[AttributeUsage(AttributeTargets.All)]
|
|
public sealed class ExtenderProvidedPropertyAttribute : Attribute
|
|
{
|
|
// Token: 0x06000761 RID: 1889 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000761")]
|
|
[Address(RVA = "0xC57B20", Offset = "0xC56B20", VA = "0x180C57B20")]
|
|
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: 0x06000762 RID: 1890 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000762")]
|
|
[Address(RVA = "0x42BA20", Offset = "0x42AA20", VA = "0x18042BA20")]
|
|
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: 0x17000156 RID: 342
|
|
// (get) Token: 0x06000763 RID: 1891 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000156")]
|
|
public PropertyDescriptor ExtenderProperty
|
|
{
|
|
[Token(Token = "0x6000763")]
|
|
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
|
|
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: 0x17000157 RID: 343
|
|
// (get) Token: 0x06000764 RID: 1892 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000157")]
|
|
public IExtenderProvider Provider
|
|
{
|
|
[Token(Token = "0x6000764")]
|
|
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
|
|
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: 0x17000158 RID: 344
|
|
// (get) Token: 0x06000765 RID: 1893 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000158")]
|
|
public Type ReceiverType
|
|
{
|
|
[Token(Token = "0x6000765")]
|
|
[Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0")]
|
|
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: 0x06000766 RID: 1894 RVA: 0x00004F08 File Offset: 0x00003108
|
|
[Token(Token = "0x6000766")]
|
|
[Address(RVA = "0xC57BA0", Offset = "0xC56BA0", VA = "0x180C57BA0", 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: 0x06000767 RID: 1895 RVA: 0x00004F20 File Offset: 0x00003120
|
|
[Token(Token = "0x6000767")]
|
|
[Address(RVA = "0xB8D310", Offset = "0xB8C310", VA = "0x180B8D310", 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: 0x06000768 RID: 1896 RVA: 0x00004F38 File Offset: 0x00003138
|
|
[Token(Token = "0x6000768")]
|
|
[Address(RVA = "0xC57C90", Offset = "0xC56C90", VA = "0x180C57C90", Slot = "6")]
|
|
public override bool IsDefaultAttribute()
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x040004E2 RID: 1250
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x40004E2")]
|
|
private PropertyDescriptor extenderProperty;
|
|
|
|
// Token: 0x040004E3 RID: 1251
|
|
[FieldOffset(Offset = "0x18")]
|
|
[Token(Token = "0x40004E3")]
|
|
private IExtenderProvider provider;
|
|
|
|
// Token: 0x040004E4 RID: 1252
|
|
[FieldOffset(Offset = "0x20")]
|
|
[Token(Token = "0x40004E4")]
|
|
private Type receiverType;
|
|
}
|
|
}
|