using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Specifies the data source and data member properties for a component that supports complex data binding. This class cannot be inherited.
// Token: 0x020000FC RID: 252
[Token(Token = "0x20000FC")]
[AttributeUsage(AttributeTargets.Class)]
public sealed class ComplexBindingPropertiesAttribute : Attribute
{
/// Initializes a new instance of the class using no parameters.
// Token: 0x06000620 RID: 1568 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000620")]
[Address(RVA = "0x497C80", Offset = "0x496A80", VA = "0x180497C80")]
public ComplexBindingPropertiesAttribute()
{
}
/// Initializes a new instance of the class using the specified data source.
/// The name of the property to be used as the data source.
// Token: 0x06000621 RID: 1569 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000621")]
[Address(RVA = "0x497CE0", Offset = "0x496AE0", VA = "0x180497CE0")]
public ComplexBindingPropertiesAttribute(string dataSource)
{
}
/// Initializes a new instance of the class using the specified data source and data member.
/// The name of the property to be used as the data source.
/// The name of the property to be used as the source for data.
// Token: 0x06000622 RID: 1570 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000622")]
[Address(RVA = "0x497CA0", Offset = "0x496AA0", VA = "0x180497CA0")]
public ComplexBindingPropertiesAttribute(string dataSource, string dataMember)
{
}
/// Gets the name of the data source property for the component to which the is bound.
/// The name of the data source property for the component to which is bound.
// Token: 0x17000112 RID: 274
// (get) Token: 0x06000623 RID: 1571 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000112")]
public string DataSource
{
[Token(Token = "0x6000623")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
/// Gets the name of the data member property for the component to which the is bound.
/// The name of the data member property for the component to which is bound
// Token: 0x17000113 RID: 275
// (get) Token: 0x06000624 RID: 1572 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000113")]
public string DataMember
{
[Token(Token = "0x6000624")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
get
{
return null;
}
}
/// Determines whether the specified is equal to the current instance.
/// The to compare with the current instance
///
/// if the object is equal to the current instance; otherwise, , indicating they are not equal.
// Token: 0x06000625 RID: 1573 RVA: 0x00004698 File Offset: 0x00002898
[Token(Token = "0x6000625")]
[Address(RVA = "0x497B90", Offset = "0x496990", VA = "0x180497B90", 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: 0x06000626 RID: 1574 RVA: 0x000046B0 File Offset: 0x000028B0
[Token(Token = "0x6000626")]
[Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x04000488 RID: 1160
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000488")]
private readonly string dataSource;
// Token: 0x04000489 RID: 1161
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000489")]
private readonly string dataMember;
/// Represents the default value for the class.
// Token: 0x0400048A RID: 1162
[Token(Token = "0x400048A")]
public static readonly ComplexBindingPropertiesAttribute Default;
}
}