using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Provides a generic collection that supports data binding.
/// The type of elements in the list.
// Token: 0x020000EF RID: 239
[Token(Token = "0x20000EF")]
[Serializable]
public class BindingList : Collection, IBindingList, IList, ICollection, IEnumerable, ICancelAddNew, IRaiseItemChangedEvents
{
/// Initializes a new instance of the class using default values.
// Token: 0x060005A5 RID: 1445 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005A5")]
[Address(RVA = "0x311FFF0", Offset = "0x311EDF0", VA = "0x18311FFF0")]
public BindingList()
{
}
/// Initializes a new instance of the class with the specified list.
/// An of items to be contained in the .
// Token: 0x060005A6 RID: 1446 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005A6")]
[Address(RVA = "0x311FF80", Offset = "0x311ED80", VA = "0x18311FF80")]
public BindingList(IList list)
{
}
// Token: 0x060005A7 RID: 1447 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005A7")]
[Address(RVA = "0x311F640", Offset = "0x311E440", VA = "0x18311F640")]
private void Initialize()
{
}
// Token: 0x170000E6 RID: 230
// (get) Token: 0x060005A8 RID: 1448 RVA: 0x00004338 File Offset: 0x00002538
[Token(Token = "0x170000E6")]
private bool ItemTypeHasDefaultConstructor
{
[Token(Token = "0x60005A8")]
[Address(RVA = "0x3120250", Offset = "0x311F050", VA = "0x183120250")]
get
{
return default(bool);
}
}
/// Occurs before an item is added to the list.
// Token: 0x14000005 RID: 5
// (add) Token: 0x060005A9 RID: 1449 RVA: 0x00002053 File Offset: 0x00000253
// (remove) Token: 0x060005AA RID: 1450 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x14000005")]
public event AddingNewEventHandler AddingNew
{
[Token(Token = "0x60005A9")]
[Address(RVA = "0x3120060", Offset = "0x311EE60", VA = "0x183120060")]
add
{
}
[Token(Token = "0x60005AA")]
[Address(RVA = "0x3120340", Offset = "0x311F140", VA = "0x183120340")]
remove
{
}
}
/// Raises the event.
/// An that contains the event data.
// Token: 0x060005AB RID: 1451 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005AB")]
[Address(RVA = "0x311F980", Offset = "0x311E780", VA = "0x18311F980", Slot = "59")]
protected virtual void OnAddingNew(AddingNewEventArgs e)
{
}
// Token: 0x060005AC RID: 1452 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60005AC")]
[Address(RVA = "0x311F470", Offset = "0x311E270", VA = "0x18311F470")]
private object FireAddingNew()
{
return null;
}
/// Occurs when the list or an item in the list changes.
// Token: 0x14000006 RID: 6
// (add) Token: 0x060005AD RID: 1453 RVA: 0x00002053 File Offset: 0x00000253
// (remove) Token: 0x060005AE RID: 1454 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x14000006")]
public event ListChangedEventHandler ListChanged
{
[Token(Token = "0x60005AD")]
[Address(RVA = "0x3120160", Offset = "0x311EF60", VA = "0x183120160", Slot = "49")]
add
{
}
[Token(Token = "0x60005AE")]
[Address(RVA = "0x3120440", Offset = "0x311F240", VA = "0x183120440", Slot = "50")]
remove
{
}
}
/// Raises the event.
/// A that contains the event data.
// Token: 0x060005AF RID: 1455 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005AF")]
[Address(RVA = "0xB31590", Offset = "0xB30390", VA = "0x180B31590", Slot = "60")]
protected virtual void OnListChanged(ListChangedEventArgs e)
{
}
/// Gets or sets a value indicating whether adding or removing items within the list raises events.
///
/// if adding or removing items raises events; otherwise, . The default is .
// Token: 0x170000E7 RID: 231
// (get) Token: 0x060005B0 RID: 1456 RVA: 0x00004350 File Offset: 0x00002550
// (set) Token: 0x060005B1 RID: 1457 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170000E7")]
public bool RaiseListChangedEvents
{
[Token(Token = "0x60005B0")]
[Address(RVA = "0x431BC0", Offset = "0x4309C0", VA = "0x180431BC0")]
get
{
return default(bool);
}
[Token(Token = "0x60005B1")]
[Address(RVA = "0x31205A0", Offset = "0x311F3A0", VA = "0x1831205A0")]
set
{
}
}
/// Raises a event of type .
// Token: 0x060005B2 RID: 1458 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005B2")]
[Address(RVA = "0x311FB10", Offset = "0x311E910", VA = "0x18311FB10")]
public void ResetBindings()
{
}
/// Raises a event of type for the item at the specified position.
/// A zero-based index of the item to be reset.
// Token: 0x060005B3 RID: 1459 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005B3")]
[Address(RVA = "0x311FB40", Offset = "0x311E940", VA = "0x18311FB40")]
public void ResetItem(int position)
{
}
// Token: 0x060005B4 RID: 1460 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005B4")]
[Address(RVA = "0x311F4F0", Offset = "0x311E2F0", VA = "0x18311F4F0")]
private void FireListChanged(ListChangedType type, int index)
{
}
/// Removes all elements from the collection.
// Token: 0x060005B5 RID: 1461 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005B5")]
[Address(RVA = "0x311F1D0", Offset = "0x311DFD0", VA = "0x18311F1D0", Slot = "35")]
protected override void ClearItems()
{
}
/// Inserts the specified item in the list at the specified index.
/// The zero-based index where the item is to be inserted.
/// The item to insert in the list.
// Token: 0x060005B6 RID: 1462 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005B6")]
[Address(RVA = "0x311F8C0", Offset = "0x311E6C0", VA = "0x18311F8C0", Slot = "36")]
protected override void InsertItem(int index, T item)
{
}
/// Removes the item at the specified index.
/// The zero-based index of the item to remove.
/// You are removing a newly added item and is set to .
// Token: 0x060005B7 RID: 1463 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005B7")]
[Address(RVA = "0x311F9A0", Offset = "0x311E7A0", VA = "0x18311F9A0", Slot = "37")]
protected override void RemoveItem(int index)
{
}
/// Replaces the item at the specified index with the specified item.
/// The zero-based index of the item to replace.
/// The new value for the item at the specified index. The value can be for reference types.
///
/// is less than zero.
/// -or-
/// is greater than .
// Token: 0x060005B8 RID: 1464 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005B8")]
[Address(RVA = "0x311FB70", Offset = "0x311E970", VA = "0x18311FB70", Slot = "38")]
protected override void SetItem(int index, T item)
{
}
/// Discards a pending new item.
/// The index of the of the new item to be added
// Token: 0x060005B9 RID: 1465 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005B9")]
[Address(RVA = "0x311EE80", Offset = "0x311DC80", VA = "0x18311EE80", Slot = "61")]
public virtual void CancelNew(int itemIndex)
{
}
/// Commits a pending new item to the collection.
/// The index of the new item to be added.
// Token: 0x060005BA RID: 1466 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005BA")]
[Address(RVA = "0x311F400", Offset = "0x311E200", VA = "0x18311F400", Slot = "62")]
public virtual void EndNew(int itemIndex)
{
}
/// Adds a new item to the collection.
/// The item added to the list.
/// The property is set to .
/// -or-
/// A public default constructor could not be found for the current item type.
// Token: 0x060005BB RID: 1467 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60005BB")]
[Address(RVA = "0x311ED80", Offset = "0x311DB80", VA = "0x18311ED80")]
public T AddNew()
{
return null;
}
/// Adds a new item to the list. For more information, see .
/// The item added to the list.
/// This method is not supported.
// Token: 0x060005BC RID: 1468 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60005BC")]
[Address(RVA = "0x311FC40", Offset = "0x311EA40", VA = "0x18311FC40", Slot = "40")]
object IBindingList.AddNew()
{
return null;
}
// Token: 0x170000E8 RID: 232
// (get) Token: 0x060005BD RID: 1469 RVA: 0x00004368 File Offset: 0x00002568
[Token(Token = "0x170000E8")]
private bool AddingNewHandled
{
[Token(Token = "0x60005BD")]
[Address(RVA = "0x31201E0", Offset = "0x311EFE0", VA = "0x1831201E0")]
get
{
return default(bool);
}
}
/// Adds a new item to the end of the collection.
/// The item that was added to the collection.
/// The new item is not the same type as the objects contained in the .
// Token: 0x060005BE RID: 1470 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60005BE")]
[Address(RVA = "0x311EC50", Offset = "0x311DA50", VA = "0x18311EC50", Slot = "63")]
protected virtual object AddNewCore()
{
return null;
}
/// Gets or sets a value indicating whether you can add items to the list using the method.
///
/// if you can add items to the list with the method; otherwise, . The default depends on the underlying type contained in the list.
// Token: 0x170000E9 RID: 233
// (get) Token: 0x060005BF RID: 1471 RVA: 0x00004380 File Offset: 0x00002580
// (set) Token: 0x060005C0 RID: 1472 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170000E9")]
public bool AllowNew
{
[Token(Token = "0x60005BF")]
[Address(RVA = "0x3120220", Offset = "0x311F020", VA = "0x183120220")]
get
{
return default(bool);
}
[Token(Token = "0x60005C0")]
[Address(RVA = "0x31204F0", Offset = "0x311F2F0", VA = "0x1831204F0")]
set
{
}
}
/// Gets a value indicating whether new items can be added to the list using the method.
///
/// if you can add items to the list with the method; otherwise, . The default depends on the underlying type contained in the list.
// Token: 0x170000EA RID: 234
// (get) Token: 0x060005C1 RID: 1473 RVA: 0x00004398 File Offset: 0x00002598
[Token(Token = "0x170000EA")]
bool IBindingList.AllowNew
{
[Token(Token = "0x60005C1")]
[Address(RVA = "0x1C59AB0", Offset = "0x1C588B0", VA = "0x181C59AB0", Slot = "39")]
get
{
return default(bool);
}
}
/// Gets or sets a value indicating whether items in the list can be edited.
///
/// if list items can be edited; otherwise, . The default is .
// Token: 0x170000EB RID: 235
// (get) Token: 0x060005C2 RID: 1474 RVA: 0x000043B0 File Offset: 0x000025B0
// (set) Token: 0x060005C3 RID: 1475 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170000EB")]
public bool AllowEdit
{
[Token(Token = "0x60005C2")]
[Address(RVA = "0xE7EED0", Offset = "0xE7DCD0", VA = "0x180E7EED0")]
get
{
return default(bool);
}
[Token(Token = "0x60005C3")]
[Address(RVA = "0x31204C0", Offset = "0x311F2C0", VA = "0x1831204C0")]
set
{
}
}
/// Gets a value indicating whether items in the list can be edited.
///
/// if list items can be edited; otherwise, . The default is .
// Token: 0x170000EC RID: 236
// (get) Token: 0x060005C4 RID: 1476 RVA: 0x000043C8 File Offset: 0x000025C8
[Token(Token = "0x170000EC")]
bool IBindingList.AllowEdit
{
[Token(Token = "0x60005C4")]
[Address(RVA = "0x311FD90", Offset = "0x311EB90", VA = "0x18311FD90", Slot = "41")]
get
{
return default(bool);
}
}
/// Gets or sets a value indicating whether you can remove items from the collection.
///
/// if you can remove items from the list with the method otherwise, . The default is .
// Token: 0x170000ED RID: 237
// (get) Token: 0x060005C5 RID: 1477 RVA: 0x000043E0 File Offset: 0x000025E0
// (set) Token: 0x060005C6 RID: 1478 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170000ED")]
public bool AllowRemove
{
[Token(Token = "0x60005C5")]
[Address(RVA = "0xE7EF00", Offset = "0xE7DD00", VA = "0x180E7EF00")]
get
{
return default(bool);
}
[Token(Token = "0x60005C6")]
[Address(RVA = "0x3120570", Offset = "0x311F370", VA = "0x183120570")]
set
{
}
}
/// Gets a value indicating whether items can be removed from the list.
///
/// if you can remove items from the list with the method; otherwise, . The default is .
// Token: 0x170000EE RID: 238
// (get) Token: 0x060005C7 RID: 1479 RVA: 0x000043F8 File Offset: 0x000025F8
[Token(Token = "0x170000EE")]
bool IBindingList.AllowRemove
{
[Token(Token = "0x60005C7")]
[Address(RVA = "0x311FDC0", Offset = "0x311EBC0", VA = "0x18311FDC0", Slot = "42")]
get
{
return default(bool);
}
}
/// For a description of this member, see .
///
/// if a event is raised when the list changes or when an item changes; otherwise, .
// Token: 0x170000EF RID: 239
// (get) Token: 0x060005C8 RID: 1480 RVA: 0x00004410 File Offset: 0x00002610
[Token(Token = "0x170000EF")]
bool IBindingList.SupportsChangeNotification
{
[Token(Token = "0x60005C8")]
[Address(RVA = "0x311FE80", Offset = "0x311EC80", VA = "0x18311FE80", Slot = "43")]
get
{
return default(bool);
}
}
/// Gets a value indicating whether events are enabled.
///
/// if events are supported; otherwise, . The default is .
// Token: 0x170000F0 RID: 240
// (get) Token: 0x060005C9 RID: 1481 RVA: 0x00004428 File Offset: 0x00002628
[Token(Token = "0x170000F0")]
protected virtual bool SupportsChangeNotificationCore
{
[Token(Token = "0x60005C9")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "64")]
get
{
return default(bool);
}
}
/// For a description of this member, see .
///
/// if the list supports searching using the method; otherwise, .
// Token: 0x170000F1 RID: 241
// (get) Token: 0x060005CA RID: 1482 RVA: 0x00004440 File Offset: 0x00002640
[Token(Token = "0x170000F1")]
bool IBindingList.SupportsSearching
{
[Token(Token = "0x60005CA")]
[Address(RVA = "0x311FEB0", Offset = "0x311ECB0", VA = "0x18311FEB0", Slot = "44")]
get
{
return default(bool);
}
}
/// Gets a value indicating whether the list supports searching.
///
/// if the list supports searching; otherwise, . The default is .
// Token: 0x170000F2 RID: 242
// (get) Token: 0x060005CB RID: 1483 RVA: 0x00004458 File Offset: 0x00002658
[Token(Token = "0x170000F2")]
protected virtual bool SupportsSearchingCore
{
[Token(Token = "0x60005CB")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "65")]
get
{
return default(bool);
}
}
/// For a description of this member, see .
///
/// if the list supports sorting; otherwise, .
// Token: 0x170000F3 RID: 243
// (get) Token: 0x060005CC RID: 1484 RVA: 0x00004470 File Offset: 0x00002670
[Token(Token = "0x170000F3")]
bool IBindingList.SupportsSorting
{
[Token(Token = "0x60005CC")]
[Address(RVA = "0x311FEE0", Offset = "0x311ECE0", VA = "0x18311FEE0", Slot = "45")]
get
{
return default(bool);
}
}
/// Gets a value indicating whether the list supports sorting.
///
/// if the list supports sorting; otherwise, . The default is .
// Token: 0x170000F4 RID: 244
// (get) Token: 0x060005CD RID: 1485 RVA: 0x00004488 File Offset: 0x00002688
[Token(Token = "0x170000F4")]
protected virtual bool SupportsSortingCore
{
[Token(Token = "0x60005CD")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "66")]
get
{
return default(bool);
}
}
/// For a description of this member, see .
///
/// if has been called and has not been called; otherwise, .
// Token: 0x170000F5 RID: 245
// (get) Token: 0x060005CE RID: 1486 RVA: 0x000044A0 File Offset: 0x000026A0
[Token(Token = "0x170000F5")]
bool IBindingList.IsSorted
{
[Token(Token = "0x60005CE")]
[Address(RVA = "0x311FDF0", Offset = "0x311EBF0", VA = "0x18311FDF0", Slot = "46")]
get
{
return default(bool);
}
}
/// Gets a value indicating whether the list is sorted.
///
/// if the list is sorted; otherwise, . The default is .
// Token: 0x170000F6 RID: 246
// (get) Token: 0x060005CF RID: 1487 RVA: 0x000044B8 File Offset: 0x000026B8
[Token(Token = "0x170000F6")]
protected virtual bool IsSortedCore
{
[Token(Token = "0x60005CF")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "67")]
get
{
return default(bool);
}
}
/// For a description of this member, see .
/// The that is being used for sorting.
// Token: 0x170000F7 RID: 247
// (get) Token: 0x060005D0 RID: 1488 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000F7")]
PropertyDescriptor IBindingList.SortProperty
{
[Token(Token = "0x60005D0")]
[Address(RVA = "0x311FE50", Offset = "0x311EC50", VA = "0x18311FE50", Slot = "47")]
get
{
return null;
}
}
/// Gets the property descriptor that is used for sorting the list if sorting is implemented in a derived class; otherwise, returns .
/// The used for sorting the list.
// Token: 0x170000F8 RID: 248
// (get) Token: 0x060005D1 RID: 1489 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000F8")]
protected virtual PropertyDescriptor SortPropertyCore
{
[Token(Token = "0x60005D1")]
[Address(RVA = "0x43E630", Offset = "0x43D430", VA = "0x18043E630", Slot = "68")]
get
{
return null;
}
}
/// For a description of this member, see .
/// One of the values.
// Token: 0x170000F9 RID: 249
// (get) Token: 0x060005D2 RID: 1490 RVA: 0x000044D0 File Offset: 0x000026D0
[Token(Token = "0x170000F9")]
ListSortDirection IBindingList.SortDirection
{
[Token(Token = "0x60005D2")]
[Address(RVA = "0x311FE20", Offset = "0x311EC20", VA = "0x18311FE20", Slot = "48")]
get
{
return ListSortDirection.Ascending;
}
}
/// Gets the direction the list is sorted.
/// One of the values. The default is .
// Token: 0x170000FA RID: 250
// (get) Token: 0x060005D3 RID: 1491 RVA: 0x000044E8 File Offset: 0x000026E8
[Token(Token = "0x170000FA")]
protected virtual ListSortDirection SortDirectionCore
{
[Token(Token = "0x60005D3")]
[Address(RVA = "0x43E630", Offset = "0x43D430", VA = "0x18043E630", Slot = "69")]
get
{
return ListSortDirection.Ascending;
}
}
/// Sorts the list based on a and a . For a complete description of this member, see .
/// The to sort by.
/// One of the values.
// Token: 0x060005D4 RID: 1492 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005D4")]
[Address(RVA = "0x311FD00", Offset = "0x311EB00", VA = "0x18311FD00", Slot = "52")]
void IBindingList.ApplySort(PropertyDescriptor prop, ListSortDirection direction)
{
}
/// Sorts the items if overridden in a derived class; otherwise, throws a .
/// A that specifies the property to sort on.
/// One of the values.
/// Method is not overridden in a derived class.
// Token: 0x060005D5 RID: 1493 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005D5")]
[Address(RVA = "0x311EE30", Offset = "0x311DC30", VA = "0x18311EE30", Slot = "70")]
protected virtual void ApplySortCore(PropertyDescriptor prop, ListSortDirection direction)
{
}
/// For a description of this member, see
// Token: 0x060005D6 RID: 1494 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005D6")]
[Address(RVA = "0x311FD60", Offset = "0x311EB60", VA = "0x18311FD60", Slot = "55")]
void IBindingList.RemoveSort()
{
}
/// Removes any sort applied with if sorting is implemented in a derived class; otherwise, raises .
/// Method is not overridden in a derived class.
// Token: 0x060005D7 RID: 1495 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005D7")]
[Address(RVA = "0x311FAC0", Offset = "0x311E8C0", VA = "0x18311FAC0", Slot = "71")]
protected virtual void RemoveSortCore()
{
}
/// For a description of this member, see .
/// The to search on.
/// The value of the parameter to search for.
/// The index of the row that has the given .
// Token: 0x060005D8 RID: 1496 RVA: 0x00004500 File Offset: 0x00002700
[Token(Token = "0x60005D8")]
[Address(RVA = "0x311FD30", Offset = "0x311EB30", VA = "0x18311FD30", Slot = "53")]
int IBindingList.Find(PropertyDescriptor prop, object key)
{
return 0;
}
/// Searches for the index of the item that has the specified property descriptor with the specified value, if searching is implemented in a derived class; otherwise, a .
/// The to search for.
/// The value of to match.
/// The zero-based index of the item that matches the property descriptor and contains the specified value.
///
/// is not overridden in a derived class.
// Token: 0x060005D9 RID: 1497 RVA: 0x00004518 File Offset: 0x00002718
[Token(Token = "0x60005D9")]
[Address(RVA = "0x311F420", Offset = "0x311E220", VA = "0x18311F420", Slot = "72")]
protected virtual int FindCore(PropertyDescriptor prop, object key)
{
return 0;
}
/// For a description of this member, see .
/// The to add as a search criteria.
// Token: 0x060005DA RID: 1498 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005DA")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080", Slot = "51")]
void IBindingList.AddIndex(PropertyDescriptor prop)
{
}
/// For a description of this member, see .
/// A to remove from the indexes used for searching.
// Token: 0x060005DB RID: 1499 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005DB")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080", Slot = "54")]
void IBindingList.RemoveIndex(PropertyDescriptor prop)
{
}
// Token: 0x060005DC RID: 1500 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005DC")]
[Address(RVA = "0x311F580", Offset = "0x311E380", VA = "0x18311F580")]
private void HookPropertyChanged(T item)
{
}
// Token: 0x060005DD RID: 1501 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005DD")]
[Address(RVA = "0x311FF10", Offset = "0x311ED10", VA = "0x18311FF10")]
private void UnhookPropertyChanged(T item)
{
}
// Token: 0x060005DE RID: 1502 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005DE")]
[Address(RVA = "0x311EEC0", Offset = "0x311DCC0", VA = "0x18311EEC0")]
private void Child_PropertyChanged(object sender, PropertyChangedEventArgs e)
{
}
/// Gets a value indicating whether item property value changes raise events of type . This member cannot be overridden in a derived class.
///
/// if the list type implements , otherwise, . The default is .
// Token: 0x170000FB RID: 251
// (get) Token: 0x060005DF RID: 1503 RVA: 0x00004530 File Offset: 0x00002730
[Token(Token = "0x170000FB")]
bool IRaiseItemChangedEvents.RaisesItemChangedEvents
{
[Token(Token = "0x60005DF")]
[Address(RVA = "0xD3C370", Offset = "0xD3B170", VA = "0x180D3C370", Slot = "58")]
get
{
return default(bool);
}
}
// Token: 0x0400045E RID: 1118
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x400045E")]
private int addNewPos;
// Token: 0x0400045F RID: 1119
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x400045F")]
private bool raiseListChangedEvents;
// Token: 0x04000460 RID: 1120
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000460")]
private bool raiseItemChangedEvents;
// Token: 0x04000461 RID: 1121
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000461")]
[NonSerialized]
private PropertyDescriptorCollection itemTypeProperties;
// Token: 0x04000462 RID: 1122
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000462")]
[NonSerialized]
private PropertyChangedEventHandler propertyChangedEventHandler;
// Token: 0x04000463 RID: 1123
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000463")]
[NonSerialized]
private AddingNewEventHandler onAddingNew;
// Token: 0x04000464 RID: 1124
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000464")]
[NonSerialized]
private ListChangedEventHandler onListChanged;
// Token: 0x04000465 RID: 1125
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000465")]
[NonSerialized]
private int lastChangeIndex;
// Token: 0x04000466 RID: 1126
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000466")]
private bool allowNew;
// Token: 0x04000467 RID: 1127
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000467")]
private bool allowEdit;
// Token: 0x04000468 RID: 1128
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000468")]
private bool allowRemove;
// Token: 0x04000469 RID: 1129
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000469")]
private bool userSetAllowNew;
}
}