using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Specifies the default property for a component.
// Token: 0x0200010E RID: 270
[Token(Token = "0x200010E")]
[AttributeUsage(AttributeTargets.Class)]
public sealed class DefaultPropertyAttribute : Attribute
{
/// Initializes a new instance of the class.
/// The name of the default property for the component this attribute is bound to.
// Token: 0x06000699 RID: 1689 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000699")]
[Address(RVA = "0x681CA0", Offset = "0x680CA0", VA = "0x180681CA0")]
public DefaultPropertyAttribute(string name)
{
}
/// Gets the name of the default property for the component this attribute is bound to.
/// The name of the default property for the component this attribute is bound to. The default value is .
// Token: 0x1700012B RID: 299
// (get) Token: 0x0600069A RID: 1690 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700012B")]
public string Name
{
[Token(Token = "0x600069A")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
get
{
return null;
}
}
/// Returns whether the value of the given object is equal to the current .
/// The object to test the value equality of.
///
/// if the value of the given object is equal to that of the current; otherwise, .
// Token: 0x0600069B RID: 1691 RVA: 0x000049F8 File Offset: 0x00002BF8
[Token(Token = "0x600069B")]
[Address(RVA = "0xC51790", Offset = "0xC50790", VA = "0x180C51790", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// Returns the hash code for this instance.
/// A 32-bit signed integer hash code.
// Token: 0x0600069C RID: 1692 RVA: 0x00004A10 File Offset: 0x00002C10
[Token(Token = "0x600069C")]
[Address(RVA = "0xB8D310", Offset = "0xB8C310", VA = "0x180B8D310", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x040004A5 RID: 1189
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40004A5")]
private readonly string name;
/// Specifies the default value for the , which is . This field is read-only.
// Token: 0x040004A6 RID: 1190
[Token(Token = "0x40004A6")]
public static readonly DefaultPropertyAttribute Default;
}
}