501 lines
24 KiB
C#
501 lines
24 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Represents a collection of <see cref="T:System.ComponentModel.EventDescriptor" /> objects.</summary>
|
|
// Token: 0x02000121 RID: 289
|
|
[Token(Token = "0x2000121")]
|
|
[ComVisible(true)]
|
|
public class EventDescriptorCollection : ICollection, IEnumerable, IList
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.EventDescriptorCollection" /> class with the given array of <see cref="T:System.ComponentModel.EventDescriptor" /> objects.</summary>
|
|
/// <param name="events">An array of type <see cref="T:System.ComponentModel.EventDescriptor" /> that provides the events for this collection.</param>
|
|
// Token: 0x06000721 RID: 1825 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000721")]
|
|
[Address(RVA = "0xC56B60", Offset = "0xC55B60", VA = "0x180C56B60")]
|
|
public EventDescriptorCollection(EventDescriptor[] events)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.EventDescriptorCollection" /> class with the given array of <see cref="T:System.ComponentModel.EventDescriptor" /> objects. The collection is optionally read-only.</summary>
|
|
/// <param name="events">An array of type <see cref="T:System.ComponentModel.EventDescriptor" /> that provides the events for this collection.</param>
|
|
/// <param name="readOnly">
|
|
/// <see langword="true" /> to specify a read-only collection; otherwise, <see langword="false" />.</param>
|
|
// Token: 0x06000722 RID: 1826 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000722")]
|
|
[Address(RVA = "0xC56CA0", Offset = "0xC55CA0", VA = "0x180C56CA0")]
|
|
public EventDescriptorCollection(EventDescriptor[] events, bool readOnly)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000723 RID: 1827 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000723")]
|
|
[Address(RVA = "0xC56BE0", Offset = "0xC55BE0", VA = "0x180C56BE0")]
|
|
private EventDescriptorCollection(EventDescriptor[] events, int eventCount, string[] namedSort, IComparer comparer)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the number of event descriptors in the collection.</summary>
|
|
/// <returns>The number of event descriptors in the collection.</returns>
|
|
// Token: 0x17000148 RID: 328
|
|
// (get) Token: 0x06000724 RID: 1828 RVA: 0x00004DA0 File Offset: 0x00002FA0
|
|
[Token(Token = "0x17000148")]
|
|
public int Count
|
|
{
|
|
[Token(Token = "0x6000724")]
|
|
[Address(RVA = "0x4B5010", Offset = "0x4B4010", VA = "0x1804B5010")]
|
|
get
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the event with the specified index number.</summary>
|
|
/// <param name="index">The zero-based index number of the <see cref="T:System.ComponentModel.EventDescriptor" /> to get or set.</param>
|
|
/// <returns>The <see cref="T:System.ComponentModel.EventDescriptor" /> with the specified index number.</returns>
|
|
/// <exception cref="T:System.IndexOutOfRangeException">
|
|
/// <paramref name="index" /> is not a valid index for <see cref="P:System.ComponentModel.EventDescriptorCollection.Item(System.Int32)" />.</exception>
|
|
// Token: 0x17000149 RID: 329
|
|
[Token(Token = "0x17000149")]
|
|
public virtual EventDescriptor this[int index]
|
|
{
|
|
[Token(Token = "0x6000725")]
|
|
[Address(RVA = "0xC56D20", Offset = "0xC55D20", VA = "0x180C56D20", Slot = "20")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the event with the specified name.</summary>
|
|
/// <param name="name">The name of the <see cref="T:System.ComponentModel.EventDescriptor" /> to get or set.</param>
|
|
/// <returns>The <see cref="T:System.ComponentModel.EventDescriptor" /> with the specified name, or <see langword="null" /> if the event does not exist.</returns>
|
|
// Token: 0x1700014A RID: 330
|
|
[Token(Token = "0x1700014A")]
|
|
public virtual EventDescriptor this[string name]
|
|
{
|
|
[Token(Token = "0x6000726")]
|
|
[Address(RVA = "0xC56DC0", Offset = "0xC55DC0", VA = "0x180C56DC0", Slot = "21")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Adds an <see cref="T:System.ComponentModel.EventDescriptor" /> to the end of the collection.</summary>
|
|
/// <param name="value">An <see cref="T:System.ComponentModel.EventDescriptor" /> to add to the collection.</param>
|
|
/// <returns>The position of the <see cref="T:System.ComponentModel.EventDescriptor" /> within the collection.</returns>
|
|
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
|
|
// Token: 0x06000727 RID: 1831 RVA: 0x00004DB8 File Offset: 0x00002FB8
|
|
[Token(Token = "0x6000727")]
|
|
[Address(RVA = "0xC553A0", Offset = "0xC543A0", VA = "0x180C553A0")]
|
|
public int Add(EventDescriptor value)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <summary>Removes all objects from the collection.</summary>
|
|
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
|
|
// Token: 0x06000728 RID: 1832 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000728")]
|
|
[Address(RVA = "0xC55490", Offset = "0xC54490", VA = "0x180C55490")]
|
|
public void Clear()
|
|
{
|
|
}
|
|
|
|
/// <summary>Returns whether the collection contains the given <see cref="T:System.ComponentModel.EventDescriptor" />.</summary>
|
|
/// <param name="value">The <see cref="T:System.ComponentModel.EventDescriptor" /> to find within the collection.</param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the collection contains the <paramref name="value" /> parameter given; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x06000729 RID: 1833 RVA: 0x00004DD0 File Offset: 0x00002FD0
|
|
[Token(Token = "0x6000729")]
|
|
[Address(RVA = "0xC554F0", Offset = "0xC544F0", VA = "0x180C554F0")]
|
|
public bool Contains(EventDescriptor value)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <summary>Copies the elements of the collection to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
|
|
/// <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from collection. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
|
|
/// <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
|
|
// Token: 0x0600072A RID: 1834 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600072A")]
|
|
[Address(RVA = "0xC56260", Offset = "0xC55260", VA = "0x180C56260", Slot = "4")]
|
|
void ICollection.CopyTo(Array array, int index)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600072B RID: 1835 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600072B")]
|
|
[Address(RVA = "0xC55550", Offset = "0xC54550", VA = "0x180C55550")]
|
|
private void EnsureEventsOwned()
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600072C RID: 1836 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600072C")]
|
|
[Address(RVA = "0xC555F0", Offset = "0xC545F0", VA = "0x180C555F0")]
|
|
private void EnsureSize(int sizeNeeded)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the description of the event with the specified name in the collection.</summary>
|
|
/// <param name="name">The name of the event to get from the collection.</param>
|
|
/// <param name="ignoreCase">
|
|
/// <see langword="true" /> if you want to ignore the case of the event; otherwise, <see langword="false" />.</param>
|
|
/// <returns>The <see cref="T:System.ComponentModel.EventDescriptor" /> with the specified name, or <see langword="null" /> if the event does not exist.</returns>
|
|
// Token: 0x0600072D RID: 1837 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600072D")]
|
|
[Address(RVA = "0xC55710", Offset = "0xC54710", VA = "0x180C55710", Slot = "22")]
|
|
public virtual EventDescriptor Find(string name, bool ignoreCase)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Returns the index of the given <see cref="T:System.ComponentModel.EventDescriptor" />.</summary>
|
|
/// <param name="value">The <see cref="T:System.ComponentModel.EventDescriptor" /> to find within the collection.</param>
|
|
/// <returns>The index of the given <see cref="T:System.ComponentModel.EventDescriptor" /> within the collection.</returns>
|
|
// Token: 0x0600072E RID: 1838 RVA: 0x00004DE8 File Offset: 0x00002FE8
|
|
[Token(Token = "0x600072E")]
|
|
[Address(RVA = "0xC55930", Offset = "0xC54930", VA = "0x180C55930")]
|
|
public int IndexOf(EventDescriptor value)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <summary>Inserts an <see cref="T:System.ComponentModel.EventDescriptor" /> to the collection at a specified index.</summary>
|
|
/// <param name="index">The index within the collection in which to insert the <paramref name="value" /> parameter.</param>
|
|
/// <param name="value">An <see cref="T:System.ComponentModel.EventDescriptor" /> to insert into the collection.</param>
|
|
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
|
|
// Token: 0x0600072F RID: 1839 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600072F")]
|
|
[Address(RVA = "0xC55990", Offset = "0xC54990", VA = "0x180C55990")]
|
|
public void Insert(int index, EventDescriptor value)
|
|
{
|
|
}
|
|
|
|
/// <summary>Removes the specified <see cref="T:System.ComponentModel.EventDescriptor" /> from the collection.</summary>
|
|
/// <param name="value">The <see cref="T:System.ComponentModel.EventDescriptor" /> to remove from the collection.</param>
|
|
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
|
|
// Token: 0x06000730 RID: 1840 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000730")]
|
|
[Address(RVA = "0xC55F20", Offset = "0xC54F20", VA = "0x180C55F20")]
|
|
public void Remove(EventDescriptor value)
|
|
{
|
|
}
|
|
|
|
/// <summary>Removes the <see cref="T:System.ComponentModel.EventDescriptor" /> at the specified index from the collection.</summary>
|
|
/// <param name="index">The index of the <see cref="T:System.ComponentModel.EventDescriptor" /> to remove.</param>
|
|
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
|
|
// Token: 0x06000731 RID: 1841 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000731")]
|
|
[Address(RVA = "0xC55E50", Offset = "0xC54E50", VA = "0x180C55E50")]
|
|
public void RemoveAt(int index)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets an enumerator for this <see cref="T:System.ComponentModel.EventDescriptorCollection" />.</summary>
|
|
/// <returns>An enumerator that implements <see cref="T:System.Collections.IEnumerator" />.</returns>
|
|
// Token: 0x06000732 RID: 1842 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000732")]
|
|
[Address(RVA = "0xC55890", Offset = "0xC54890", VA = "0x180C55890")]
|
|
public IEnumerator GetEnumerator()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Sorts the members of this <see cref="T:System.ComponentModel.EventDescriptorCollection" />, using the default sort for this collection, which is usually alphabetical.</summary>
|
|
/// <returns>The new <see cref="T:System.ComponentModel.EventDescriptorCollection" />.</returns>
|
|
// Token: 0x06000733 RID: 1843 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000733")]
|
|
[Address(RVA = "0xC561C0", Offset = "0xC551C0", VA = "0x180C561C0", Slot = "23")]
|
|
public virtual EventDescriptorCollection Sort()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Sorts the members of this <see cref="T:System.ComponentModel.EventDescriptorCollection" />, given a specified sort order.</summary>
|
|
/// <param name="names">An array of strings describing the order in which to sort the <see cref="T:System.ComponentModel.EventDescriptor" /> objects in the collection.</param>
|
|
/// <returns>The new <see cref="T:System.ComponentModel.EventDescriptorCollection" />.</returns>
|
|
// Token: 0x06000734 RID: 1844 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000734")]
|
|
[Address(RVA = "0xC56080", Offset = "0xC55080", VA = "0x180C56080", Slot = "24")]
|
|
public virtual EventDescriptorCollection Sort(string[] names)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Sorts the members of this <see cref="T:System.ComponentModel.EventDescriptorCollection" />, given a specified sort order and an <see cref="T:System.Collections.IComparer" />.</summary>
|
|
/// <param name="names">An array of strings describing the order in which to sort the <see cref="T:System.ComponentModel.EventDescriptor" /> objects in the collection.</param>
|
|
/// <param name="comparer">An <see cref="T:System.Collections.IComparer" /> to use to sort the <see cref="T:System.ComponentModel.EventDescriptor" /> objects in this collection.</param>
|
|
/// <returns>The new <see cref="T:System.ComponentModel.EventDescriptorCollection" />.</returns>
|
|
// Token: 0x06000735 RID: 1845 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000735")]
|
|
[Address(RVA = "0xC55FE0", Offset = "0xC54FE0", VA = "0x180C55FE0", Slot = "25")]
|
|
public virtual EventDescriptorCollection Sort(string[] names, IComparer comparer)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Sorts the members of this <see cref="T:System.ComponentModel.EventDescriptorCollection" />, using the specified <see cref="T:System.Collections.IComparer" />.</summary>
|
|
/// <param name="comparer">An <see cref="T:System.Collections.IComparer" /> to use to sort the <see cref="T:System.ComponentModel.EventDescriptor" /> objects in this collection.</param>
|
|
/// <returns>The new <see cref="T:System.ComponentModel.EventDescriptorCollection" />.</returns>
|
|
// Token: 0x06000736 RID: 1846 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000736")]
|
|
[Address(RVA = "0xC56120", Offset = "0xC55120", VA = "0x180C56120", Slot = "26")]
|
|
public virtual EventDescriptorCollection Sort(IComparer comparer)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Sorts the members of this <see cref="T:System.ComponentModel.EventDescriptorCollection" />. The specified order is applied first, followed by the default sort for this collection, which is usually alphabetical.</summary>
|
|
/// <param name="names">An array of strings describing the order in which to sort the <see cref="T:System.ComponentModel.EventDescriptor" /> objects in this collection.</param>
|
|
// Token: 0x06000737 RID: 1847 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000737")]
|
|
[Address(RVA = "0xC55B30", Offset = "0xC54B30", VA = "0x180C55B30")]
|
|
protected void InternalSort(string[] names)
|
|
{
|
|
}
|
|
|
|
/// <summary>Sorts the members of this <see cref="T:System.ComponentModel.EventDescriptorCollection" />, using the specified <see cref="T:System.Collections.IComparer" />.</summary>
|
|
/// <param name="sorter">A comparer to use to sort the <see cref="T:System.ComponentModel.EventDescriptor" /> objects in this collection.</param>
|
|
// Token: 0x06000738 RID: 1848 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000738")]
|
|
[Address(RVA = "0xC55AB0", Offset = "0xC54AB0", VA = "0x180C55AB0")]
|
|
protected void InternalSort(IComparer sorter)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the number of elements contained in the collection.</summary>
|
|
/// <returns>The number of elements contained in the collection.</returns>
|
|
// Token: 0x1700014B RID: 331
|
|
// (get) Token: 0x06000739 RID: 1849 RVA: 0x00004E00 File Offset: 0x00003000
|
|
[Token(Token = "0x1700014B")]
|
|
int ICollection.Count
|
|
{
|
|
[Token(Token = "0x6000739")]
|
|
[Address(RVA = "0x4B5010", Offset = "0x4B4010", VA = "0x1804B5010", Slot = "5")]
|
|
get
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets a value indicating whether access to the collection is synchronized.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if access to the collection is synchronized; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x1700014C RID: 332
|
|
// (get) Token: 0x0600073A RID: 1850 RVA: 0x00004E18 File Offset: 0x00003018
|
|
[Token(Token = "0x1700014C")]
|
|
bool ICollection.IsSynchronized
|
|
{
|
|
[Token(Token = "0x600073A")]
|
|
[Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", Slot = "7")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets an object that can be used to synchronize access to the collection.</summary>
|
|
/// <returns>An object that can be used to synchronize access to the collection.</returns>
|
|
// Token: 0x1700014D RID: 333
|
|
// (get) Token: 0x0600073B RID: 1851 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x1700014D")]
|
|
object ICollection.SyncRoot
|
|
{
|
|
[Token(Token = "0x600073B")]
|
|
[Address(RVA = "0x4242C0", Offset = "0x4232C0", VA = "0x1804242C0", Slot = "6")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Returns an enumerator that iterates through a collection.</summary>
|
|
/// <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
|
|
// Token: 0x0600073C RID: 1852 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600073C")]
|
|
[Address(RVA = "0xC562B0", Offset = "0xC552B0", VA = "0x180C562B0", Slot = "8")]
|
|
IEnumerator IEnumerable.GetEnumerator()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Gets or sets the element at the specified index.</summary>
|
|
/// <param name="index">The zero-based index of the element to get or set.</param>
|
|
/// <returns>The element at the specified index.</returns>
|
|
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
|
|
/// <exception cref="T:System.IndexOutOfRangeException">
|
|
/// <paramref name="index" /> is less than 0.
|
|
/// -or-
|
|
/// <paramref name="index" /> is equal to or greater than <see cref="P:System.ComponentModel.EventDescriptorCollection.Count" />.</exception>
|
|
// Token: 0x1700014E RID: 334
|
|
[Token(Token = "0x1700014E")]
|
|
object IList.this[int index]
|
|
{
|
|
[Token(Token = "0x600073D")]
|
|
[Address(RVA = "0x4B4070", Offset = "0x4B3070", VA = "0x1804B4070", Slot = "9")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x600073E")]
|
|
[Address(RVA = "0xC56910", Offset = "0xC55910", VA = "0x180C56910", Slot = "10")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Adds an item to the collection.</summary>
|
|
/// <param name="value">The <see cref="T:System.Object" /> to add to the collection.</param>
|
|
/// <returns>The position into which the new element was inserted.</returns>
|
|
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
|
|
// Token: 0x0600073F RID: 1855 RVA: 0x00004E30 File Offset: 0x00003030
|
|
[Token(Token = "0x600073F")]
|
|
[Address(RVA = "0xC56350", Offset = "0xC55350", VA = "0x180C56350", Slot = "11")]
|
|
int IList.Add(object value)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <summary>Removes all the items from the collection.</summary>
|
|
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
|
|
// Token: 0x06000740 RID: 1856 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000740")]
|
|
[Address(RVA = "0xC55490", Offset = "0xC54490", VA = "0x180C55490", Slot = "13")]
|
|
void IList.Clear()
|
|
{
|
|
}
|
|
|
|
/// <summary>Determines whether the collection contains a specific value.</summary>
|
|
/// <param name="value">The <see cref="T:System.Object" /> to locate in the collection.</param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the <see cref="T:System.Object" /> is found in the collection; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x06000741 RID: 1857 RVA: 0x00004E48 File Offset: 0x00003048
|
|
[Token(Token = "0x6000741")]
|
|
[Address(RVA = "0xC564B0", Offset = "0xC554B0", VA = "0x180C564B0", Slot = "12")]
|
|
bool IList.Contains(object value)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <summary>Determines the index of a specific item in the collection.</summary>
|
|
/// <param name="value">The <see cref="T:System.Object" /> to locate in the collection.</param>
|
|
/// <returns>The index of <paramref name="value" /> if found in the list; otherwise, -1.</returns>
|
|
// Token: 0x06000742 RID: 1858 RVA: 0x00004E60 File Offset: 0x00003060
|
|
[Token(Token = "0x6000742")]
|
|
[Address(RVA = "0xC56580", Offset = "0xC55580", VA = "0x180C56580", Slot = "16")]
|
|
int IList.IndexOf(object value)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <summary>Inserts an item to the collection at the specified index.</summary>
|
|
/// <param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param>
|
|
/// <param name="value">The <see cref="T:System.Object" /> to insert into the collection.</param>
|
|
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
|
|
// Token: 0x06000743 RID: 1859 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000743")]
|
|
[Address(RVA = "0xC56650", Offset = "0xC55650", VA = "0x180C56650", Slot = "17")]
|
|
void IList.Insert(int index, object value)
|
|
{
|
|
}
|
|
|
|
/// <summary>Removes the first occurrence of a specific object from the collection.</summary>
|
|
/// <param name="value">The <see cref="T:System.Object" /> to remove from the collection.</param>
|
|
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
|
|
// Token: 0x06000744 RID: 1860 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000744")]
|
|
[Address(RVA = "0xC567E0", Offset = "0xC557E0", VA = "0x180C567E0", Slot = "18")]
|
|
void IList.Remove(object value)
|
|
{
|
|
}
|
|
|
|
/// <summary>Removes the item at the specified index.</summary>
|
|
/// <param name="index">The zero-based index of the item to remove.</param>
|
|
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
|
|
// Token: 0x06000745 RID: 1861 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000745")]
|
|
[Address(RVA = "0xC567D0", Offset = "0xC557D0", VA = "0x180C567D0", Slot = "19")]
|
|
void IList.RemoveAt(int index)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets a value indicating whether the collection is read-only.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x1700014F RID: 335
|
|
// (get) Token: 0x06000746 RID: 1862 RVA: 0x00004E78 File Offset: 0x00003078
|
|
[Token(Token = "0x1700014F")]
|
|
bool IList.IsReadOnly
|
|
{
|
|
[Token(Token = "0x6000746")]
|
|
[Address(RVA = "0x5AB2E0", Offset = "0x5AA2E0", VA = "0x1805AB2E0", Slot = "14")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets a value indicating whether the collection has a fixed size.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the collection has a fixed size; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x17000150 RID: 336
|
|
// (get) Token: 0x06000747 RID: 1863 RVA: 0x00004E90 File Offset: 0x00003090
|
|
[Token(Token = "0x17000150")]
|
|
bool IList.IsFixedSize
|
|
{
|
|
[Token(Token = "0x6000747")]
|
|
[Address(RVA = "0x5AB2E0", Offset = "0x5AA2E0", VA = "0x1805AB2E0", Slot = "15")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
// Token: 0x040004D3 RID: 1235
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x40004D3")]
|
|
private EventDescriptor[] events;
|
|
|
|
// Token: 0x040004D4 RID: 1236
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
|
|
[Token(Token = "0x40004D4")]
|
|
private string[] namedSort;
|
|
|
|
// Token: 0x040004D5 RID: 1237
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
|
|
[Token(Token = "0x40004D5")]
|
|
private IComparer comparer;
|
|
|
|
// Token: 0x040004D6 RID: 1238
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x28")]
|
|
[Token(Token = "0x40004D6")]
|
|
private bool eventsOwned;
|
|
|
|
// Token: 0x040004D7 RID: 1239
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x29")]
|
|
[Token(Token = "0x40004D7")]
|
|
private bool needSort;
|
|
|
|
// Token: 0x040004D8 RID: 1240
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x2C")]
|
|
[Token(Token = "0x40004D8")]
|
|
private int eventCount;
|
|
|
|
// Token: 0x040004D9 RID: 1241
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x30")]
|
|
[Token(Token = "0x40004D9")]
|
|
private bool readOnly;
|
|
|
|
/// <summary>Specifies an empty collection to use, rather than creating a new one with no items. This <see langword="static" /> field is read-only.</summary>
|
|
// Token: 0x040004DA RID: 1242
|
|
[Token(Token = "0x40004DA")]
|
|
public static readonly EventDescriptorCollection Empty;
|
|
}
|
|
}
|