Files
2026-04-10 22:50:51 +02:00

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: 0x02000161 RID: 353
[Token(Token = "0x2000161")]
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: 0x06000871 RID: 2161 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000871")]
[Address(RVA = "0x4F34F0", Offset = "0x4F22F0", VA = "0x1804F34F0")]
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: 0x17000194 RID: 404
// (get) Token: 0x06000872 RID: 2162 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06000873 RID: 2163 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000194")]
public PropertyDescriptor PropertyDescriptor
{
[Token(Token = "0x6000872")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
[Token(Token = "0x6000873")]
[Address(RVA = "0x3F7200", Offset = "0x3F6000", VA = "0x1803F7200")]
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: 0x17000195 RID: 405
// (get) Token: 0x06000874 RID: 2164 RVA: 0x00005238 File Offset: 0x00003438
// (set) Token: 0x06000875 RID: 2165 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000195")]
public ListSortDirection SortDirection
{
[Token(Token = "0x6000874")]
[Address(RVA = "0x40B720", Offset = "0x40A520", VA = "0x18040B720")]
get
{
return ListSortDirection.Ascending;
}
[Token(Token = "0x6000875")]
[Address(RVA = "0x41F740", Offset = "0x41E540", VA = "0x18041F740")]
set
{
}
}
// Token: 0x04000524 RID: 1316
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000524")]
private PropertyDescriptor property;
// Token: 0x04000525 RID: 1317
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000525")]
private ListSortDirection sortDirection;
}
}