1289 lines
49 KiB
C#
1289 lines
49 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Runtime.CompilerServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Data
|
|
{
|
|
/// <summary>Represents a databindable, customized view of a <see cref="T:System.Data.DataTable" /> for sorting, filtering, searching, editing, and navigation. The <see cref="T:System.Data.DataView" /> does not store data, but instead represents a connected view of its corresponding <see cref="T:System.Data.DataTable" />. Changes to the <see cref="T:System.Data.DataView" />'s data will affect the <see cref="T:System.Data.DataTable" />. Changes to the <see cref="T:System.Data.DataTable" />'s data will affect all <see cref="T:System.Data.DataView" />s associated with it.</summary>
|
|
// Token: 0x02000043 RID: 67
|
|
[Token(Token = "0x2000043")]
|
|
[DefaultEvent("PositionChanged")]
|
|
[DefaultProperty("Table")]
|
|
public class DataView : MarshalByValueComponent, IBindingListView, IBindingList, IList, ICollection, IEnumerable, ITypedList, ISupportInitializeNotification, ISupportInitialize
|
|
{
|
|
// Token: 0x060004CA RID: 1226 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60004CA")]
|
|
[Address(RVA = "0xA21990", Offset = "0xA20990", VA = "0x180A21990")]
|
|
internal DataView(DataTable table, bool locked)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.DataView" /> class with the specified <see cref="T:System.Data.DataTable" />.</summary>
|
|
/// <param name="table">A <see cref="T:System.Data.DataTable" /> to add to the <see cref="T:System.Data.DataView" />.</param>
|
|
// Token: 0x060004CB RID: 1227 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60004CB")]
|
|
[Address(RVA = "0xA21C30", Offset = "0xA20C30", VA = "0x180A21C30")]
|
|
public DataView(DataTable table)
|
|
{
|
|
}
|
|
|
|
/// <summary>Sets or gets a value that indicates whether deletes are allowed.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" />, if deletes are allowed; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x170000CD RID: 205
|
|
// (get) Token: 0x060004CC RID: 1228 RVA: 0x000032FC File Offset: 0x000014FC
|
|
[Token(Token = "0x170000CD")]
|
|
[DefaultValue(true)]
|
|
public bool AllowDelete
|
|
{
|
|
[Token(Token = "0x60004CC")]
|
|
[Address(RVA = "0x4B4FC0", Offset = "0x4B3FC0", VA = "0x1804B4FC0")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets a value that indicates whether edits are allowed.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" />, if edits are allowed; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x170000CE RID: 206
|
|
// (get) Token: 0x060004CD RID: 1229 RVA: 0x00003314 File Offset: 0x00001514
|
|
[Token(Token = "0x170000CE")]
|
|
[DefaultValue(true)]
|
|
public bool AllowEdit
|
|
{
|
|
[Token(Token = "0x60004CD")]
|
|
[Address(RVA = "0xA21300", Offset = "0xA20300", VA = "0x180A21300")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets a value that indicates whether the new rows can be added by using the <see cref="M:System.Data.DataView.AddNew" /> method.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" />, if new rows can be added; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x170000CF RID: 207
|
|
// (get) Token: 0x060004CE RID: 1230 RVA: 0x0000332C File Offset: 0x0000152C
|
|
[Token(Token = "0x170000CF")]
|
|
[DefaultValue(true)]
|
|
public bool AllowNew
|
|
{
|
|
[Token(Token = "0x60004CE")]
|
|
[Address(RVA = "0xA21310", Offset = "0xA20310", VA = "0x180A21310")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the number of records in the <see cref="T:System.Data.DataView" /> after <see cref="P:System.Data.DataView.RowFilter" /> and <see cref="P:System.Data.DataView.RowStateFilter" /> have been applied.</summary>
|
|
/// <returns>The number of records in the <see cref="T:System.Data.DataView" />.</returns>
|
|
// Token: 0x170000D0 RID: 208
|
|
// (get) Token: 0x060004CF RID: 1231 RVA: 0x00003344 File Offset: 0x00001544
|
|
[Token(Token = "0x170000D0")]
|
|
[Browsable(false)]
|
|
public int Count
|
|
{
|
|
[Token(Token = "0x60004CF")]
|
|
[Address(RVA = "0xA21E50", Offset = "0xA20E50", VA = "0x180A21E50", Slot = "52")]
|
|
get
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
// Token: 0x170000D1 RID: 209
|
|
// (get) Token: 0x060004D0 RID: 1232 RVA: 0x0000335C File Offset: 0x0000155C
|
|
[Token(Token = "0x170000D1")]
|
|
private int CountFromIndex
|
|
{
|
|
[Token(Token = "0x60004D0")]
|
|
[Address(RVA = "0xA21E20", Offset = "0xA20E20", VA = "0x180A21E20")]
|
|
get
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the <see cref="T:System.Data.DataViewManager" /> associated with this view.</summary>
|
|
/// <returns>The <see langword="DataViewManager" /> that created this view. If this is the default <see cref="T:System.Data.DataView" /> for a <see cref="T:System.Data.DataTable" />, the <see langword="DataViewManager" /> property returns the default <see langword="DataViewManager" /> for the <see langword="DataSet" />. Otherwise, if the <see langword="DataView" /> was created without a <see langword="DataViewManager" />, this property is <see langword="null" />.</returns>
|
|
// Token: 0x170000D2 RID: 210
|
|
// (get) Token: 0x060004D1 RID: 1233 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170000D2")]
|
|
[Browsable(false)]
|
|
public DataViewManager DataViewManager
|
|
{
|
|
[Token(Token = "0x60004D1")]
|
|
[Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets a value that indicates whether the component is initialized.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> to indicate the component has completed initialization; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x170000D3 RID: 211
|
|
// (get) Token: 0x060004D2 RID: 1234 RVA: 0x00003374 File Offset: 0x00001574
|
|
[Token(Token = "0x170000D3")]
|
|
[Browsable(false)]
|
|
public bool IsInitialized
|
|
{
|
|
[Token(Token = "0x60004D2")]
|
|
[Address(RVA = "0xA21EA0", Offset = "0xA20EA0", VA = "0x180A21EA0", Slot = "58")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets a value that indicates whether the data source is currently open and projecting views of data on the <see cref="T:System.Data.DataTable" />.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" />, if the source is open; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x170000D4 RID: 212
|
|
// (get) Token: 0x060004D3 RID: 1235 RVA: 0x0000338C File Offset: 0x0000158C
|
|
[Token(Token = "0x170000D4")]
|
|
[Browsable(false)]
|
|
protected bool IsOpen
|
|
{
|
|
[Token(Token = "0x60004D3")]
|
|
[Address(RVA = "0x6A5B20", Offset = "0x6A4B20", VA = "0x1806A5B20")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</returns>
|
|
// Token: 0x170000D5 RID: 213
|
|
// (get) Token: 0x060004D4 RID: 1236 RVA: 0x000033A4 File Offset: 0x000015A4
|
|
[Token(Token = "0x170000D5")]
|
|
bool ICollection.IsSynchronized
|
|
{
|
|
[Token(Token = "0x60004D4")]
|
|
[Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", Slot = "54")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the expression used to filter which rows are viewed in the <see cref="T:System.Data.DataView" />.</summary>
|
|
/// <returns>A string that specifies how rows are to be filtered.</returns>
|
|
// Token: 0x170000D6 RID: 214
|
|
// (get) Token: 0x060004D5 RID: 1237 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x060004D6 RID: 1238 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x170000D6")]
|
|
[DefaultValue("")]
|
|
public virtual string RowFilter
|
|
{
|
|
[Token(Token = "0x60004D5")]
|
|
[Address(RVA = "0xA21EB0", Offset = "0xA20EB0", VA = "0x180A21EB0", Slot = "63")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x60004D6")]
|
|
[Address(RVA = "0xA220E0", Offset = "0xA210E0", VA = "0x180A220E0", Slot = "64")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the row state filter used in the <see cref="T:System.Data.DataView" />.</summary>
|
|
/// <returns>One of the <see cref="T:System.Data.DataViewRowState" /> values.</returns>
|
|
// Token: 0x170000D7 RID: 215
|
|
// (get) Token: 0x060004D7 RID: 1239 RVA: 0x000033BC File Offset: 0x000015BC
|
|
// (set) Token: 0x060004D8 RID: 1240 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x170000D7")]
|
|
[Attribute(Name = "DefaultValueAttribute", RVA = "0x103020", Offset = "0x102420")]
|
|
public DataViewRowState RowStateFilter
|
|
{
|
|
[Token(Token = "0x60004D7")]
|
|
[Address(RVA = "0x66A4F0", Offset = "0x6694F0", VA = "0x18066A4F0")]
|
|
get
|
|
{
|
|
return DataViewRowState.None;
|
|
}
|
|
[Token(Token = "0x60004D8")]
|
|
[Address(RVA = "0xA22280", Offset = "0xA21280", VA = "0x180A22280")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the sort column or columns, and sort order for the <see cref="T:System.Data.DataView" />.</summary>
|
|
/// <returns>A string that contains the column name followed by "ASC" (ascending) or "DESC" (descending). Columns are sorted ascending by default. Multiple columns can be separated by commas.</returns>
|
|
// Token: 0x170000D8 RID: 216
|
|
// (get) Token: 0x060004D9 RID: 1241 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x060004DA RID: 1242 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x170000D8")]
|
|
[DefaultValue("")]
|
|
public string Sort
|
|
{
|
|
[Token(Token = "0x60004D9")]
|
|
[Address(RVA = "0xA21F10", Offset = "0xA20F10", VA = "0x180A21F10")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x60004DA")]
|
|
[Address(RVA = "0xA223A0", Offset = "0xA213A0", VA = "0x180A223A0")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
// Token: 0x170000D9 RID: 217
|
|
// (get) Token: 0x060004DB RID: 1243 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170000D9")]
|
|
internal Comparison<DataRow> SortComparison
|
|
{
|
|
[Token(Token = "0x60004DB")]
|
|
[Address(RVA = "0x4936E0", Offset = "0x4926E0", VA = "0x1804936E0")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</returns>
|
|
// Token: 0x170000DA RID: 218
|
|
// (get) Token: 0x060004DC RID: 1244 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170000DA")]
|
|
object ICollection.SyncRoot
|
|
{
|
|
[Token(Token = "0x60004DC")]
|
|
[Address(RVA = "0x4A65C0", Offset = "0x4A55C0", VA = "0x1804A65C0", Slot = "53")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the source <see cref="T:System.Data.DataTable" />.</summary>
|
|
/// <returns>A <see cref="T:System.Data.DataTable" /> that provides the data for this view.</returns>
|
|
// Token: 0x170000DB RID: 219
|
|
// (get) Token: 0x060004DD RID: 1245 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x060004DE RID: 1246 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x170000DB")]
|
|
[TypeConverter]
|
|
[TypeConverter(typeof(DataTableTypeConverter))]
|
|
[RefreshProperties(RefreshProperties.All)]
|
|
[DefaultValue(null)]
|
|
public DataTable Table
|
|
{
|
|
[Token(Token = "0x60004DD")]
|
|
[Address(RVA = "0x4157D0", Offset = "0x4147D0", VA = "0x1804157D0")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x60004DE")]
|
|
[Address(RVA = "0xA22550", Offset = "0xA21550", VA = "0x180A22550")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.Collections.IList.Item(System.Int32)" />.</summary>
|
|
/// <param name="recordIndex">An <see cref="T:System.Int32" /> value.</param>
|
|
/// <returns>For a description of this member, see <see cref="P:System.Collections.IList.Item(System.Int32)" />.</returns>
|
|
// Token: 0x170000DC RID: 220
|
|
[Token(Token = "0x170000DC")]
|
|
object IList.this[int recordIndex]
|
|
{
|
|
[Token(Token = "0x60004DF")]
|
|
[Address(RVA = "0xA20A40", Offset = "0xA1FA40", VA = "0x180A20A40", Slot = "40")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x60004E0")]
|
|
[Address(RVA = "0xA20AA0", Offset = "0xA1FAA0", VA = "0x180A20AA0", Slot = "41")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets a row of data from a specified table.</summary>
|
|
/// <param name="recordIndex">The index of a record in the <see cref="T:System.Data.DataTable" />.</param>
|
|
/// <returns>A <see cref="T:System.Data.DataRowView" /> of the row that you want.</returns>
|
|
// Token: 0x170000DD RID: 221
|
|
[Token(Token = "0x170000DD")]
|
|
public DataRowView this[int recordIndex]
|
|
{
|
|
[Token(Token = "0x60004E1")]
|
|
[Address(RVA = "0xA20A40", Offset = "0xA1FA40", VA = "0x180A20A40")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Adds a new row to the <see cref="T:System.Data.DataView" />.</summary>
|
|
/// <returns>A new <see cref="T:System.Data.DataRowView" /> object.</returns>
|
|
// Token: 0x060004E2 RID: 1250 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004E2")]
|
|
[Address(RVA = "0xA1DB70", Offset = "0xA1CB70", VA = "0x180A1DB70", Slot = "65")]
|
|
public virtual DataRowView AddNew()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Starts the initialization of a <see cref="T:System.Data.DataView" /> that is used on a form or used by another component. The initialization occurs at runtime.</summary>
|
|
// Token: 0x060004E3 RID: 1251 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60004E3")]
|
|
[Address(RVA = "0xA1DE00", Offset = "0xA1CE00", VA = "0x180A1DE00", Slot = "61")]
|
|
public void BeginInit()
|
|
{
|
|
}
|
|
|
|
/// <summary>Ends the initialization of a <see cref="T:System.Data.DataView" /> that is used on a form or used by another component. The initialization occurs at runtime.</summary>
|
|
// Token: 0x060004E4 RID: 1252 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60004E4")]
|
|
[Address(RVA = "0xA1E990", Offset = "0xA1D990", VA = "0x180A1E990", Slot = "62")]
|
|
public void EndInit()
|
|
{
|
|
}
|
|
|
|
// Token: 0x060004E5 RID: 1253 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60004E5")]
|
|
[Address(RVA = "0xA1DE10", Offset = "0xA1CE10", VA = "0x180A1DE10")]
|
|
private void CheckOpen()
|
|
{
|
|
}
|
|
|
|
// Token: 0x060004E6 RID: 1254 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60004E6")]
|
|
[Address(RVA = "0xA1DE60", Offset = "0xA1CE60", VA = "0x180A1DE60")]
|
|
private void CheckSort(string sort)
|
|
{
|
|
}
|
|
|
|
/// <summary>Closes the <see cref="T:System.Data.DataView" />.</summary>
|
|
// Token: 0x060004E7 RID: 1255 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60004E7")]
|
|
[Address(RVA = "0xA1E0D0", Offset = "0xA1D0D0", VA = "0x180A1E0D0")]
|
|
protected void Close()
|
|
{
|
|
}
|
|
|
|
/// <summary>Copies items into an array. Only for Web Forms Interfaces.</summary>
|
|
/// <param name="array">array to copy into.</param>
|
|
/// <param name="index">index to start at.</param>
|
|
// Token: 0x060004E8 RID: 1256 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60004E8")]
|
|
[Address(RVA = "0xA1E500", Offset = "0xA1D500", VA = "0x180A1E500", Slot = "51")]
|
|
public void CopyTo(Array array, int index)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060004E9 RID: 1257 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60004E9")]
|
|
[Address(RVA = "0xA1E330", Offset = "0xA1D330", VA = "0x180A1E330")]
|
|
private void CopyTo(DataRowView[] array, int index)
|
|
{
|
|
}
|
|
|
|
/// <summary>Deletes a row at the specified index.</summary>
|
|
/// <param name="index">The index of the row to delete.</param>
|
|
// Token: 0x060004EA RID: 1258 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60004EA")]
|
|
[Address(RVA = "0xA1E740", Offset = "0xA1D740", VA = "0x180A1E740")]
|
|
public void Delete(int index)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060004EB RID: 1259 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60004EB")]
|
|
[Address(RVA = "0xA1E770", Offset = "0xA1D770", VA = "0x180A1E770")]
|
|
internal void Delete(DataRow row)
|
|
{
|
|
}
|
|
|
|
/// <summary>Disposes of the resources (other than memory) used by the <see cref="T:System.Data.DataView" /> object.</summary>
|
|
/// <param name="disposing">
|
|
/// <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
|
|
// Token: 0x060004EC RID: 1260 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60004EC")]
|
|
[Address(RVA = "0xA1E930", Offset = "0xA1D930", VA = "0x180A1E930", Slot = "12")]
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060004ED RID: 1261 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60004ED")]
|
|
[Address(RVA = "0xA1EC60", Offset = "0xA1DC60", VA = "0x180A1EC60")]
|
|
internal void FinishAddNew(bool success)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets an enumerator for this <see cref="T:System.Data.DataView" />.</summary>
|
|
/// <returns>An <see cref="T:System.Collections.IEnumerator" /> for navigating through the list.</returns>
|
|
// Token: 0x060004EE RID: 1262 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004EE")]
|
|
[Address(RVA = "0xA1EE10", Offset = "0xA1DE10", VA = "0x180A1EE10", Slot = "55")]
|
|
public IEnumerator GetEnumerator()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsReadOnly" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="P:System.Collections.IList.IsReadOnly" />.</returns>
|
|
// Token: 0x170000DE RID: 222
|
|
// (get) Token: 0x060004EF RID: 1263 RVA: 0x000033D4 File Offset: 0x000015D4
|
|
[Token(Token = "0x170000DE")]
|
|
bool IList.IsReadOnly
|
|
{
|
|
[Token(Token = "0x60004EF")]
|
|
[Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", Slot = "45")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize" />.</returns>
|
|
// Token: 0x170000DF RID: 223
|
|
// (get) Token: 0x060004F0 RID: 1264 RVA: 0x000033EC File Offset: 0x000015EC
|
|
[Token(Token = "0x170000DF")]
|
|
bool IList.IsFixedSize
|
|
{
|
|
[Token(Token = "0x60004F0")]
|
|
[Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", Slot = "46")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.Collections.IList.Add(System.Object)" />.</summary>
|
|
/// <param name="value">An <see cref="T:System.Object" /> value.</param>
|
|
/// <returns>For a description of this member, see <see cref="M:System.Collections.IList.Add(System.Object)" />.</returns>
|
|
// Token: 0x060004F1 RID: 1265 RVA: 0x00003404 File Offset: 0x00001604
|
|
[Token(Token = "0x60004F1")]
|
|
[Address(RVA = "0xA206D0", Offset = "0xA1F6D0", VA = "0x180A206D0", Slot = "42")]
|
|
int IList.Add(object value)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.Collections.IList.Clear" />.</summary>
|
|
// Token: 0x060004F2 RID: 1266 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60004F2")]
|
|
[Address(RVA = "0xA20770", Offset = "0xA1F770", VA = "0x180A20770", Slot = "44")]
|
|
void IList.Clear()
|
|
{
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.Collections.IList.Contains(System.Object)" />.</summary>
|
|
/// <param name="value">An <see cref="T:System.Object" /> value.</param>
|
|
/// <returns>For a description of this member, see <see cref="M:System.Collections.IList.Contains(System.Object)" />.</returns>
|
|
// Token: 0x060004F3 RID: 1267 RVA: 0x0000341C File Offset: 0x0000161C
|
|
[Token(Token = "0x60004F3")]
|
|
[Address(RVA = "0xA207B0", Offset = "0xA1F7B0", VA = "0x180A207B0", Slot = "43")]
|
|
bool IList.Contains(object value)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.Collections.IList.IndexOf(System.Object)" />.</summary>
|
|
/// <param name="value">An <see cref="T:System.Object" /> value.</param>
|
|
/// <returns>For a description of this member, see <see cref="M:System.Collections.IList.IndexOf(System.Object)" />.</returns>
|
|
// Token: 0x060004F4 RID: 1268 RVA: 0x00003434 File Offset: 0x00001634
|
|
[Token(Token = "0x60004F4")]
|
|
[Address(RVA = "0xA20840", Offset = "0xA1F840", VA = "0x180A20840", Slot = "47")]
|
|
int IList.IndexOf(object value)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// Token: 0x060004F5 RID: 1269 RVA: 0x0000344C File Offset: 0x0000164C
|
|
[Token(Token = "0x60004F5")]
|
|
[Address(RVA = "0xA1F7B0", Offset = "0xA1E7B0", VA = "0x180A1F7B0")]
|
|
internal int IndexOf(DataRowView rowview)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// Token: 0x060004F6 RID: 1270 RVA: 0x00003464 File Offset: 0x00001664
|
|
[Token(Token = "0x60004F6")]
|
|
[Address(RVA = "0xA1F750", Offset = "0xA1E750", VA = "0x180A1F750")]
|
|
private int IndexOfDataRowView(DataRowView rowview)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.Collections.IList.Insert(System.Int32,System.Object)" />.</summary>
|
|
/// <param name="index">An <see cref="T:System.Int32" /> value.</param>
|
|
/// <param name="value">An <see cref="T:System.Object" /> value to be inserted.</param>
|
|
// Token: 0x060004F7 RID: 1271 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60004F7")]
|
|
[Address(RVA = "0xA208D0", Offset = "0xA1F8D0", VA = "0x180A208D0", Slot = "48")]
|
|
void IList.Insert(int index, object value)
|
|
{
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.Collections.IList.Remove(System.Object)" />.</summary>
|
|
/// <param name="value">An <see cref="T:System.Object" /> value.</param>
|
|
// Token: 0x060004F8 RID: 1272 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60004F8")]
|
|
[Address(RVA = "0xA20910", Offset = "0xA1F910", VA = "0x180A20910", Slot = "49")]
|
|
void IList.Remove(object value)
|
|
{
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.Collections.IList.RemoveAt(System.Int32)" />.</summary>
|
|
/// <param name="index">An <see cref="T:System.Int32" /> value.</param>
|
|
// Token: 0x060004F9 RID: 1273 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60004F9")]
|
|
[Address(RVA = "0xA1E740", Offset = "0xA1D740", VA = "0x180A1E740", Slot = "50")]
|
|
void IList.RemoveAt(int index)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060004FA RID: 1274 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004FA")]
|
|
[Address(RVA = "0xA1EEB0", Offset = "0xA1DEB0", VA = "0x180A1EEB0")]
|
|
internal Index GetFindIndex(string column, bool keepIndex)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowNew" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowNew" />.</returns>
|
|
// Token: 0x170000E0 RID: 224
|
|
// (get) Token: 0x060004FB RID: 1275 RVA: 0x0000347C File Offset: 0x0000167C
|
|
[Token(Token = "0x170000E0")]
|
|
bool IBindingList.AllowNew
|
|
{
|
|
[Token(Token = "0x60004FB")]
|
|
[Address(RVA = "0xA21310", Offset = "0xA20310", VA = "0x180A21310", Slot = "23")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.AddNew" />.</summary>
|
|
/// <returns>The item added to the list.</returns>
|
|
// Token: 0x060004FC RID: 1276 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004FC")]
|
|
[Address(RVA = "0xA20F40", Offset = "0xA1FF40", VA = "0x180A20F40", Slot = "24")]
|
|
object IBindingList.AddNew()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowEdit" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowEdit" />.</returns>
|
|
// Token: 0x170000E1 RID: 225
|
|
// (get) Token: 0x060004FD RID: 1277 RVA: 0x00003494 File Offset: 0x00001694
|
|
[Token(Token = "0x170000E1")]
|
|
bool IBindingList.AllowEdit
|
|
{
|
|
[Token(Token = "0x60004FD")]
|
|
[Address(RVA = "0xA21300", Offset = "0xA20300", VA = "0x180A21300", Slot = "25")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowRemove" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowRemove" />.</returns>
|
|
// Token: 0x170000E2 RID: 226
|
|
// (get) Token: 0x060004FE RID: 1278 RVA: 0x000034AC File Offset: 0x000016AC
|
|
[Token(Token = "0x170000E2")]
|
|
bool IBindingList.AllowRemove
|
|
{
|
|
[Token(Token = "0x60004FE")]
|
|
[Address(RVA = "0x4B4FC0", Offset = "0x4B3FC0", VA = "0x1804B4FC0", Slot = "26")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification" />.</returns>
|
|
// Token: 0x170000E3 RID: 227
|
|
// (get) Token: 0x060004FF RID: 1279 RVA: 0x000034C4 File Offset: 0x000016C4
|
|
[Token(Token = "0x170000E3")]
|
|
bool IBindingList.SupportsChangeNotification
|
|
{
|
|
[Token(Token = "0x60004FF")]
|
|
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "27")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSearching" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSearching" />.</returns>
|
|
// Token: 0x170000E4 RID: 228
|
|
// (get) Token: 0x06000500 RID: 1280 RVA: 0x000034DC File Offset: 0x000016DC
|
|
[Token(Token = "0x170000E4")]
|
|
bool IBindingList.SupportsSearching
|
|
{
|
|
[Token(Token = "0x6000500")]
|
|
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "28")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSorting" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSorting" />.</returns>
|
|
// Token: 0x170000E5 RID: 229
|
|
// (get) Token: 0x06000501 RID: 1281 RVA: 0x000034F4 File Offset: 0x000016F4
|
|
[Token(Token = "0x170000E5")]
|
|
bool IBindingList.SupportsSorting
|
|
{
|
|
[Token(Token = "0x6000501")]
|
|
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "29")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.IsSorted" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.IsSorted" />.</returns>
|
|
// Token: 0x170000E6 RID: 230
|
|
// (get) Token: 0x06000502 RID: 1282 RVA: 0x0000350C File Offset: 0x0000170C
|
|
[Token(Token = "0x170000E6")]
|
|
bool IBindingList.IsSorted
|
|
{
|
|
[Token(Token = "0x6000502")]
|
|
[Address(RVA = "0xA21320", Offset = "0xA20320", VA = "0x180A21320", Slot = "30")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortProperty" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortProperty" />.</returns>
|
|
// Token: 0x170000E7 RID: 231
|
|
// (get) Token: 0x06000503 RID: 1283 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170000E7")]
|
|
PropertyDescriptor IBindingList.SortProperty
|
|
{
|
|
[Token(Token = "0x6000503")]
|
|
[Address(RVA = "0xA213D0", Offset = "0xA203D0", VA = "0x180A213D0", Slot = "31")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x06000504 RID: 1284 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000504")]
|
|
[Address(RVA = "0xA1F590", Offset = "0xA1E590", VA = "0x180A1F590")]
|
|
internal PropertyDescriptor GetSortProperty()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortDirection" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortDirection" />.</returns>
|
|
// Token: 0x170000E8 RID: 232
|
|
// (get) Token: 0x06000505 RID: 1285 RVA: 0x00003524 File Offset: 0x00001724
|
|
[Token(Token = "0x170000E8")]
|
|
ListSortDirection IBindingList.SortDirection
|
|
{
|
|
[Token(Token = "0x6000505")]
|
|
[Address(RVA = "0xA21380", Offset = "0xA20380", VA = "0x180A21380", Slot = "32")]
|
|
get
|
|
{
|
|
return ListSortDirection.Ascending;
|
|
}
|
|
}
|
|
|
|
/// <summary>Occurs when the list managed by the <see cref="T:System.Data.DataView" /> changes.</summary>
|
|
// Token: 0x14000009 RID: 9
|
|
// (add) Token: 0x06000506 RID: 1286 RVA: 0x0000206A File Offset: 0x0000026A
|
|
// (remove) Token: 0x06000507 RID: 1287 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x14000009")]
|
|
public event ListChangedEventHandler ListChanged
|
|
{
|
|
[Token(Token = "0x6000506")]
|
|
[Address(RVA = "0xA21D40", Offset = "0xA20D40", VA = "0x180A21D40", Slot = "33")]
|
|
add
|
|
{
|
|
}
|
|
[Token(Token = "0x6000507")]
|
|
[Address(RVA = "0xA22000", Offset = "0xA21000", VA = "0x180A22000", Slot = "34")]
|
|
remove
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Occurs when initialization of the <see cref="T:System.Data.DataView" /> is completed.</summary>
|
|
// Token: 0x1400000A RID: 10
|
|
// (add) Token: 0x06000508 RID: 1288 RVA: 0x0000206A File Offset: 0x0000026A
|
|
// (remove) Token: 0x06000509 RID: 1289 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x1400000A")]
|
|
public event EventHandler Initialized
|
|
{
|
|
[Token(Token = "0x6000508")]
|
|
[Address(RVA = "0xA21CA0", Offset = "0xA20CA0", VA = "0x180A21CA0", Slot = "59")]
|
|
[CompilerGenerated]
|
|
add
|
|
{
|
|
}
|
|
[Token(Token = "0x6000509")]
|
|
[Address(RVA = "0xA21F60", Offset = "0xA20F60", VA = "0x180A21F60", Slot = "60")]
|
|
[CompilerGenerated]
|
|
remove
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor)" />.</summary>
|
|
/// <param name="property">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> object.</param>
|
|
// Token: 0x0600050A RID: 1290 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600050A")]
|
|
[Address(RVA = "0xA20F00", Offset = "0xA1FF00", VA = "0x180A20F00", Slot = "35")]
|
|
void IBindingList.AddIndex(PropertyDescriptor property)
|
|
{
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)" />.</summary>
|
|
/// <param name="property">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> object.</param>
|
|
/// <param name="direction">A <see cref="T:System.ComponentModel.ListSortDirection" /> object.</param>
|
|
// Token: 0x0600050B RID: 1291 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600050B")]
|
|
[Address(RVA = "0xA20F60", Offset = "0xA1FF60", VA = "0x180A20F60", Slot = "36")]
|
|
void IBindingList.ApplySort(PropertyDescriptor property, ListSortDirection direction)
|
|
{
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor,System.Object)" />.</summary>
|
|
/// <param name="property">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> object.</param>
|
|
/// <param name="key">An <see cref="T:System.Object" /> value.</param>
|
|
/// <returns>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor,System.Object)" />.</returns>
|
|
// Token: 0x0600050C RID: 1292 RVA: 0x0000353C File Offset: 0x0000173C
|
|
[Token(Token = "0x600050C")]
|
|
[Address(RVA = "0xA20F90", Offset = "0xA1FF90", VA = "0x180A20F90", Slot = "37")]
|
|
int IBindingList.Find(PropertyDescriptor property, object key)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor)" />.</summary>
|
|
/// <param name="property">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> object.</param>
|
|
// Token: 0x0600050D RID: 1293 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600050D")]
|
|
[Address(RVA = "0xA21220", Offset = "0xA20220", VA = "0x180A21220", Slot = "38")]
|
|
void IBindingList.RemoveIndex(PropertyDescriptor property)
|
|
{
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.RemoveSort" />.</summary>
|
|
// Token: 0x0600050E RID: 1294 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600050E")]
|
|
[Address(RVA = "0xA21260", Offset = "0xA20260", VA = "0x180A21260", Slot = "39")]
|
|
void IBindingList.RemoveSort()
|
|
{
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingListView.ApplySort(System.ComponentModel.ListSortDescriptionCollection)" />.</summary>
|
|
/// <param name="sorts">A <see cref="T:System.ComponentModel.ListSortDescriptionCollection" /> object.</param>
|
|
// Token: 0x0600050F RID: 1295 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600050F")]
|
|
[Address(RVA = "0xA20AE0", Offset = "0xA1FAE0", VA = "0x180A20AE0", Slot = "16")]
|
|
void IBindingListView.ApplySort(ListSortDescriptionCollection sorts)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000510 RID: 1296 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000510")]
|
|
[Address(RVA = "0xA1E660", Offset = "0xA1D660", VA = "0x180A1E660")]
|
|
private string CreateSortString(PropertyDescriptor property, ListSortDirection direction)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingListView.RemoveFilter" />.</summary>
|
|
// Token: 0x06000511 RID: 1297 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000511")]
|
|
[Address(RVA = "0xA20E00", Offset = "0xA1FE00", VA = "0x180A20E00", Slot = "20")]
|
|
void IBindingListView.RemoveFilter()
|
|
{
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.Filter" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.Filter" />.</returns>
|
|
// Token: 0x170000E9 RID: 233
|
|
// (get) Token: 0x06000512 RID: 1298 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x06000513 RID: 1299 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x170000E9")]
|
|
string IBindingListView.Filter
|
|
{
|
|
[Token(Token = "0x6000512")]
|
|
[Address(RVA = "0xA20EB0", Offset = "0xA1FEB0", VA = "0x180A20EB0", Slot = "17")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x6000513")]
|
|
[Address(RVA = "0xA20EE0", Offset = "0xA1FEE0", VA = "0x180A20EE0", Slot = "18")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SortDescriptions" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SortDescriptions" />.</returns>
|
|
// Token: 0x170000EA RID: 234
|
|
// (get) Token: 0x06000514 RID: 1300 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170000EA")]
|
|
ListSortDescriptionCollection IBindingListView.SortDescriptions
|
|
{
|
|
[Token(Token = "0x6000514")]
|
|
[Address(RVA = "0xA20ED0", Offset = "0xA1FED0", VA = "0x180A20ED0", Slot = "19")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x06000515 RID: 1301 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000515")]
|
|
[Address(RVA = "0xA1F340", Offset = "0xA1E340", VA = "0x180A1F340")]
|
|
internal ListSortDescriptionCollection GetSortDescriptions()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SupportsAdvancedSorting" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SupportsAdvancedSorting" />.</returns>
|
|
// Token: 0x170000EB RID: 235
|
|
// (get) Token: 0x06000516 RID: 1302 RVA: 0x00003554 File Offset: 0x00001754
|
|
[Token(Token = "0x170000EB")]
|
|
bool IBindingListView.SupportsAdvancedSorting
|
|
{
|
|
[Token(Token = "0x6000516")]
|
|
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "21")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SupportsFiltering" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SupportsFiltering" />.</returns>
|
|
// Token: 0x170000EC RID: 236
|
|
// (get) Token: 0x06000517 RID: 1303 RVA: 0x0000356C File Offset: 0x0000176C
|
|
[Token(Token = "0x170000EC")]
|
|
bool IBindingListView.SupportsFiltering
|
|
{
|
|
[Token(Token = "0x6000517")]
|
|
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "22")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[])" />.</summary>
|
|
/// <param name="listAccessors">An array of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects.</param>
|
|
/// <returns>For a description of this member, see <see cref="M:System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[])" />.</returns>
|
|
// Token: 0x06000518 RID: 1304 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000518")]
|
|
[Address(RVA = "0xA21520", Offset = "0xA20520", VA = "0x180A21520", Slot = "56")]
|
|
string ITypedList.GetListName(PropertyDescriptor[] listAccessors)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[])" />.</summary>
|
|
/// <param name="listAccessors">An array of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects to find in the collection as bindable. This can be <see langword="null" />.</param>
|
|
// Token: 0x06000519 RID: 1305 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000519")]
|
|
[Address(RVA = "0xA21470", Offset = "0xA20470", VA = "0x180A21470", Slot = "57")]
|
|
PropertyDescriptorCollection ITypedList.GetItemProperties(PropertyDescriptor[] listAccessors)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x0600051A RID: 1306 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600051A")]
|
|
[Address(RVA = "0x417710", Offset = "0x416710", VA = "0x180417710", Slot = "66")]
|
|
internal virtual IFilter GetFilter()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x0600051B RID: 1307 RVA: 0x00003584 File Offset: 0x00001784
|
|
[Token(Token = "0x600051B")]
|
|
[Address(RVA = "0xA1F030", Offset = "0xA1E030", VA = "0x180A1F030")]
|
|
private int GetRecord(int recordIndex)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// Token: 0x0600051C RID: 1308 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600051C")]
|
|
[Address(RVA = "0xA1F1D0", Offset = "0xA1E1D0", VA = "0x180A1F1D0")]
|
|
internal DataRow GetRow(int index)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x0600051D RID: 1309 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600051D")]
|
|
[Address(RVA = "0xA1F100", Offset = "0xA1E100", VA = "0x180A1F100")]
|
|
private DataRowView GetRowView(int record)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x0600051E RID: 1310 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600051E")]
|
|
[Address(RVA = "0xA1F170", Offset = "0xA1E170", VA = "0x180A1F170")]
|
|
private DataRowView GetRowView(DataRow dr)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Occurs after a <see cref="T:System.Data.DataView" /> has been changed successfully.</summary>
|
|
/// <param name="sender">The source of the event.</param>
|
|
/// <param name="e">A <see cref="T:System.ComponentModel.ListChangedEventArgs" /> that contains the event data.</param>
|
|
// Token: 0x0600051F RID: 1311 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600051F")]
|
|
[Address(RVA = "0xA1F6D0", Offset = "0xA1E6D0", VA = "0x180A1F6D0", Slot = "67")]
|
|
protected virtual void IndexListChanged(object sender, ListChangedEventArgs e)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000520 RID: 1312 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000520")]
|
|
[Address(RVA = "0xA1F620", Offset = "0xA1E620", VA = "0x180A1F620")]
|
|
internal void IndexListChangedInternal(ListChangedEventArgs e)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000521 RID: 1313 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000521")]
|
|
[Address(RVA = "0xA1F8C0", Offset = "0xA1E8C0", VA = "0x180A1F8C0")]
|
|
internal void MaintainDataView(ListChangedType changedType, DataRow row, bool trackAddRemove)
|
|
{
|
|
}
|
|
|
|
/// <summary>Raises the <see cref="E:System.Data.DataView.ListChanged" /> event.</summary>
|
|
/// <param name="e">A <see cref="T:System.ComponentModel.ListChangedEventArgs" /> that contains the event data.</param>
|
|
// Token: 0x06000522 RID: 1314 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000522")]
|
|
[Address(RVA = "0xA1FBA0", Offset = "0xA1EBA0", VA = "0x180A1FBA0", Slot = "68")]
|
|
protected virtual void OnListChanged(ListChangedEventArgs e)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000523 RID: 1315 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000523")]
|
|
[Address(RVA = "0xA1FB10", Offset = "0xA1EB10", VA = "0x180A1FB10")]
|
|
private void OnInitialized()
|
|
{
|
|
}
|
|
|
|
/// <summary>Reserved for internal use only.</summary>
|
|
// Token: 0x06000524 RID: 1316 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000524")]
|
|
[Address(RVA = "0xA202C0", Offset = "0xA1F2C0", VA = "0x180A202C0")]
|
|
protected void Reset()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000525 RID: 1317 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000525")]
|
|
[Address(RVA = "0xA200A0", Offset = "0xA1F0A0", VA = "0x180A200A0")]
|
|
internal void ResetRowViewCache()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000526 RID: 1318 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000526")]
|
|
[Address(RVA = "0xA202F0", Offset = "0xA1F2F0", VA = "0x180A202F0")]
|
|
internal void SetDataViewManager(DataViewManager dataViewManager)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000527 RID: 1319 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000527")]
|
|
[Address(RVA = "0xA206B0", Offset = "0xA1F6B0", VA = "0x180A206B0", Slot = "69")]
|
|
internal virtual void SetIndex(string newSort, DataViewRowState newRowStates, IFilter newRowFilter)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000528 RID: 1320 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000528")]
|
|
[Address(RVA = "0xA204D0", Offset = "0xA1F4D0", VA = "0x180A204D0")]
|
|
internal void SetIndex2(string newSort, DataViewRowState newRowStates, IFilter newRowFilter, bool fireEvent)
|
|
{
|
|
}
|
|
|
|
/// <summary>Reserved for internal use only.</summary>
|
|
// Token: 0x06000529 RID: 1321 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000529")]
|
|
[Address(RVA = "0xA21900", Offset = "0xA20900", VA = "0x180A21900")]
|
|
protected void UpdateIndex()
|
|
{
|
|
}
|
|
|
|
/// <summary>Reserved for internal use only.</summary>
|
|
/// <param name="force">Reserved for internal use only.</param>
|
|
// Token: 0x0600052A RID: 1322 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600052A")]
|
|
[Address(RVA = "0xA21920", Offset = "0xA20920", VA = "0x180A21920", Slot = "70")]
|
|
protected virtual void UpdateIndex(bool force)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600052B RID: 1323 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600052B")]
|
|
[Address(RVA = "0xA215C0", Offset = "0xA205C0", VA = "0x180A215C0")]
|
|
internal void UpdateIndex(bool force, bool fireEvent)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600052C RID: 1324 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600052C")]
|
|
[Address(RVA = "0xA1DED0", Offset = "0xA1CED0", VA = "0x180A1DED0")]
|
|
internal void ChildRelationCollectionChanged(object sender, CollectionChangeEventArgs e)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600052D RID: 1325 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600052D")]
|
|
[Address(RVA = "0xA1FEA0", Offset = "0xA1EEA0", VA = "0x180A1FEA0")]
|
|
internal void ParentRelationCollectionChanged(object sender, CollectionChangeEventArgs e)
|
|
{
|
|
}
|
|
|
|
/// <summary>Occurs after a <see cref="T:System.Data.DataColumnCollection" /> has been changed successfully.</summary>
|
|
/// <param name="sender">The source of the event.</param>
|
|
/// <param name="e">A <see cref="T:System.ComponentModel.ListChangedEventArgs" /> that contains the event data.</param>
|
|
// Token: 0x0600052E RID: 1326 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600052E")]
|
|
[Address(RVA = "0xA1E130", Offset = "0xA1D130", VA = "0x180A1E130", Slot = "71")]
|
|
protected virtual void ColumnCollectionChanged(object sender, CollectionChangeEventArgs e)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600052F RID: 1327 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600052F")]
|
|
[Address(RVA = "0xA1E110", Offset = "0xA1D110", VA = "0x180A1E110")]
|
|
internal void ColumnCollectionChangedInternal(object sender, CollectionChangeEventArgs e)
|
|
{
|
|
}
|
|
|
|
// Token: 0x170000ED RID: 237
|
|
// (get) Token: 0x06000530 RID: 1328 RVA: 0x0000359C File Offset: 0x0000179C
|
|
[Token(Token = "0x170000ED")]
|
|
internal int ObjectID
|
|
{
|
|
[Token(Token = "0x6000530")]
|
|
[Address(RVA = "0x775240", Offset = "0x774240", VA = "0x180775240")]
|
|
get
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
// Token: 0x04000130 RID: 304
|
|
[FieldOffset(Offset = "0x20")]
|
|
[Token(Token = "0x4000130")]
|
|
private DataViewManager _dataViewManager;
|
|
|
|
// Token: 0x04000131 RID: 305
|
|
[FieldOffset(Offset = "0x28")]
|
|
[Token(Token = "0x4000131")]
|
|
private DataTable _table;
|
|
|
|
// Token: 0x04000132 RID: 306
|
|
[FieldOffset(Offset = "0x30")]
|
|
[Token(Token = "0x4000132")]
|
|
private bool _locked;
|
|
|
|
// Token: 0x04000133 RID: 307
|
|
[FieldOffset(Offset = "0x38")]
|
|
[Token(Token = "0x4000133")]
|
|
private Index _index;
|
|
|
|
// Token: 0x04000134 RID: 308
|
|
[FieldOffset(Offset = "0x40")]
|
|
[Token(Token = "0x4000134")]
|
|
private Dictionary<string, Index> _findIndexes;
|
|
|
|
// Token: 0x04000135 RID: 309
|
|
[FieldOffset(Offset = "0x48")]
|
|
[Token(Token = "0x4000135")]
|
|
private string _sort;
|
|
|
|
// Token: 0x04000136 RID: 310
|
|
[FieldOffset(Offset = "0x50")]
|
|
[Token(Token = "0x4000136")]
|
|
private Comparison<DataRow> _comparison;
|
|
|
|
// Token: 0x04000137 RID: 311
|
|
[FieldOffset(Offset = "0x58")]
|
|
[Token(Token = "0x4000137")]
|
|
private IFilter _rowFilter;
|
|
|
|
// Token: 0x04000138 RID: 312
|
|
[FieldOffset(Offset = "0x60")]
|
|
[Token(Token = "0x4000138")]
|
|
private DataViewRowState _recordStates;
|
|
|
|
// Token: 0x04000139 RID: 313
|
|
[FieldOffset(Offset = "0x64")]
|
|
[Token(Token = "0x4000139")]
|
|
private bool _shouldOpen;
|
|
|
|
// Token: 0x0400013A RID: 314
|
|
[FieldOffset(Offset = "0x65")]
|
|
[Token(Token = "0x400013A")]
|
|
private bool _open;
|
|
|
|
// Token: 0x0400013B RID: 315
|
|
[FieldOffset(Offset = "0x66")]
|
|
[Token(Token = "0x400013B")]
|
|
private bool _allowNew;
|
|
|
|
// Token: 0x0400013C RID: 316
|
|
[FieldOffset(Offset = "0x67")]
|
|
[Token(Token = "0x400013C")]
|
|
private bool _allowEdit;
|
|
|
|
// Token: 0x0400013D RID: 317
|
|
[FieldOffset(Offset = "0x68")]
|
|
[Token(Token = "0x400013D")]
|
|
private bool _allowDelete;
|
|
|
|
// Token: 0x0400013E RID: 318
|
|
[FieldOffset(Offset = "0x69")]
|
|
[Token(Token = "0x400013E")]
|
|
private bool _applyDefaultSort;
|
|
|
|
// Token: 0x0400013F RID: 319
|
|
[FieldOffset(Offset = "0x70")]
|
|
[Token(Token = "0x400013F")]
|
|
internal DataRow _addNewRow;
|
|
|
|
// Token: 0x04000140 RID: 320
|
|
[FieldOffset(Offset = "0x78")]
|
|
[Token(Token = "0x4000140")]
|
|
private ListChangedEventArgs _addNewMoved;
|
|
|
|
// Token: 0x04000141 RID: 321
|
|
[FieldOffset(Offset = "0x80")]
|
|
[Token(Token = "0x4000141")]
|
|
private ListChangedEventHandler _onListChanged;
|
|
|
|
// Token: 0x04000142 RID: 322
|
|
[Token(Token = "0x4000142")]
|
|
internal static ListChangedEventArgs s_resetEventArgs;
|
|
|
|
// Token: 0x04000143 RID: 323
|
|
[FieldOffset(Offset = "0x88")]
|
|
[Token(Token = "0x4000143")]
|
|
private DataTable _delayedTable;
|
|
|
|
// Token: 0x04000144 RID: 324
|
|
[FieldOffset(Offset = "0x90")]
|
|
[Token(Token = "0x4000144")]
|
|
private string _delayedRowFilter;
|
|
|
|
// Token: 0x04000145 RID: 325
|
|
[FieldOffset(Offset = "0x98")]
|
|
[Token(Token = "0x4000145")]
|
|
private string _delayedSort;
|
|
|
|
// Token: 0x04000146 RID: 326
|
|
[FieldOffset(Offset = "0xA0")]
|
|
[Token(Token = "0x4000146")]
|
|
private DataViewRowState _delayedRecordStates;
|
|
|
|
// Token: 0x04000147 RID: 327
|
|
[FieldOffset(Offset = "0xA4")]
|
|
[Token(Token = "0x4000147")]
|
|
private bool _fInitInProgress;
|
|
|
|
// Token: 0x04000148 RID: 328
|
|
[FieldOffset(Offset = "0xA5")]
|
|
[Token(Token = "0x4000148")]
|
|
private bool _fEndInitInProgress;
|
|
|
|
// Token: 0x04000149 RID: 329
|
|
[FieldOffset(Offset = "0xA8")]
|
|
[Token(Token = "0x4000149")]
|
|
private Dictionary<DataRow, DataRowView> _rowViewCache;
|
|
|
|
// Token: 0x0400014A RID: 330
|
|
[FieldOffset(Offset = "0xB0")]
|
|
[Token(Token = "0x400014A")]
|
|
private readonly Dictionary<DataRow, DataRowView> _rowViewBuffer;
|
|
|
|
// Token: 0x0400014B RID: 331
|
|
[FieldOffset(Offset = "0xB8")]
|
|
[Token(Token = "0x400014B")]
|
|
private DataViewListener _dvListener;
|
|
|
|
// Token: 0x0400014C RID: 332
|
|
[Token(Token = "0x400014C")]
|
|
private static int s_objectTypeCount;
|
|
|
|
// Token: 0x0400014D RID: 333
|
|
[FieldOffset(Offset = "0xC0")]
|
|
[Token(Token = "0x400014D")]
|
|
private readonly int _objectID;
|
|
|
|
// Token: 0x02000044 RID: 68
|
|
[Token(Token = "0x2000044")]
|
|
private sealed class DataRowReferenceComparer : IEqualityComparer<DataRow>
|
|
{
|
|
// Token: 0x06000532 RID: 1330 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000532")]
|
|
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
|
private DataRowReferenceComparer()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000533 RID: 1331 RVA: 0x000035B4 File Offset: 0x000017B4
|
|
[Token(Token = "0x6000533")]
|
|
[Address(RVA = "0xA17B20", Offset = "0xA16B20", VA = "0x180A17B20", Slot = "4")]
|
|
public bool Equals(DataRow x, DataRow y)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x06000534 RID: 1332 RVA: 0x000035CC File Offset: 0x000017CC
|
|
[Token(Token = "0x6000534")]
|
|
[Address(RVA = "0xA17B30", Offset = "0xA16B30", VA = "0x180A17B30", Slot = "5")]
|
|
public int GetHashCode(DataRow obj)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// Token: 0x0400014F RID: 335
|
|
[Token(Token = "0x400014F")]
|
|
internal static readonly DataView.DataRowReferenceComparer s_default;
|
|
}
|
|
}
|
|
}
|