74 lines
2.9 KiB
C#
74 lines
2.9 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Provides a description of the sort operation applied to a data source.</summary>
|
|
// Token: 0x0200015D RID: 349
|
|
[Token(Token = "0x200015D")]
|
|
public class ListSortDescription
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ListSortDescription" /> class with the specified property description and direction.</summary>
|
|
/// <param name="property">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> that describes the property by which the data source is sorted.</param>
|
|
/// <param name="direction">One of the <see cref="T:System.ComponentModel.ListSortDescription" /> values.</param>
|
|
// Token: 0x0600085B RID: 2139 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600085B")]
|
|
[Address(RVA = "0x52CBA0", Offset = "0x52BBA0", VA = "0x18052CBA0")]
|
|
public ListSortDescription(PropertyDescriptor property, ListSortDirection direction)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets or sets the abstract description of a class property associated with this <see cref="T:System.ComponentModel.ListSortDescription" /></summary>
|
|
/// <returns>The <see cref="T:System.ComponentModel.PropertyDescriptor" /> associated with this <see cref="T:System.ComponentModel.ListSortDescription" />.</returns>
|
|
// Token: 0x17000190 RID: 400
|
|
// (get) Token: 0x0600085C RID: 2140 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x0600085D RID: 2141 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x17000190")]
|
|
public PropertyDescriptor PropertyDescriptor
|
|
{
|
|
[Token(Token = "0x600085C")]
|
|
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x600085D")]
|
|
[Address(RVA = "0x415800", Offset = "0x414800", VA = "0x180415800")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the direction of the sort operation associated with this <see cref="T:System.ComponentModel.ListSortDescription" />.</summary>
|
|
/// <returns>One of the <see cref="T:System.ComponentModel.ListSortDirection" /> values.</returns>
|
|
// Token: 0x17000191 RID: 401
|
|
// (get) Token: 0x0600085E RID: 2142 RVA: 0x00005220 File Offset: 0x00003420
|
|
// (set) Token: 0x0600085F RID: 2143 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x17000191")]
|
|
public ListSortDirection SortDirection
|
|
{
|
|
[Token(Token = "0x600085E")]
|
|
[Address(RVA = "0x411540", Offset = "0x410540", VA = "0x180411540")]
|
|
get
|
|
{
|
|
return ListSortDirection.Ascending;
|
|
}
|
|
[Token(Token = "0x600085F")]
|
|
[Address(RVA = "0x5F1910", Offset = "0x5F0910", VA = "0x1805F1910")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
// Token: 0x04000517 RID: 1303
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x4000517")]
|
|
private PropertyDescriptor property;
|
|
|
|
// Token: 0x04000518 RID: 1304
|
|
[FieldOffset(Offset = "0x18")]
|
|
[Token(Token = "0x4000518")]
|
|
private ListSortDirection sortDirection;
|
|
}
|
|
}
|