oh dear
This commit is contained in:
@@ -0,0 +1,500 @@
|
||||
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: 0x02000125 RID: 293
|
||||
[Token(Token = "0x2000125")]
|
||||
[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: 0x06000737 RID: 1847 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000737")]
|
||||
[Address(RVA = "0x4EC750", Offset = "0x4EB550", VA = "0x1804EC750")]
|
||||
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: 0x06000738 RID: 1848 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000738")]
|
||||
[Address(RVA = "0x4EC890", Offset = "0x4EB690", VA = "0x1804EC890")]
|
||||
public EventDescriptorCollection(EventDescriptor[] events, bool readOnly)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000739 RID: 1849 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000739")]
|
||||
[Address(RVA = "0x4EC7D0", Offset = "0x4EB5D0", VA = "0x1804EC7D0")]
|
||||
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: 0x1700014C RID: 332
|
||||
// (get) Token: 0x0600073A RID: 1850 RVA: 0x00004DB8 File Offset: 0x00002FB8
|
||||
[Token(Token = "0x1700014C")]
|
||||
public int Count
|
||||
{
|
||||
[Token(Token = "0x600073A")]
|
||||
[Address(RVA = "0x42EED0", Offset = "0x42DCD0", VA = "0x18042EED0")]
|
||||
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: 0x1700014D RID: 333
|
||||
[Token(Token = "0x1700014D")]
|
||||
public virtual EventDescriptor this[int index]
|
||||
{
|
||||
[Token(Token = "0x600073B")]
|
||||
[Address(RVA = "0x4EC910", Offset = "0x4EB710", VA = "0x1804EC910", 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: 0x1700014E RID: 334
|
||||
[Token(Token = "0x1700014E")]
|
||||
public virtual EventDescriptor this[string name]
|
||||
{
|
||||
[Token(Token = "0x600073C")]
|
||||
[Address(RVA = "0x4EC9B0", Offset = "0x4EB7B0", VA = "0x1804EC9B0", 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: 0x0600073D RID: 1853 RVA: 0x00004DD0 File Offset: 0x00002FD0
|
||||
[Token(Token = "0x600073D")]
|
||||
[Address(RVA = "0x4EAF90", Offset = "0x4E9D90", VA = "0x1804EAF90")]
|
||||
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: 0x0600073E RID: 1854 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600073E")]
|
||||
[Address(RVA = "0x4EB080", Offset = "0x4E9E80", VA = "0x1804EB080")]
|
||||
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: 0x0600073F RID: 1855 RVA: 0x00004DE8 File Offset: 0x00002FE8
|
||||
[Token(Token = "0x600073F")]
|
||||
[Address(RVA = "0x4EB0E0", Offset = "0x4E9EE0", VA = "0x1804EB0E0")]
|
||||
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: 0x06000740 RID: 1856 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000740")]
|
||||
[Address(RVA = "0x4EBE50", Offset = "0x4EAC50", VA = "0x1804EBE50", Slot = "4")]
|
||||
void ICollection.CopyTo(Array array, int index)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000741 RID: 1857 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000741")]
|
||||
[Address(RVA = "0x4EB140", Offset = "0x4E9F40", VA = "0x1804EB140")]
|
||||
private void EnsureEventsOwned()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000742 RID: 1858 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000742")]
|
||||
[Address(RVA = "0x4EB1E0", Offset = "0x4E9FE0", VA = "0x1804EB1E0")]
|
||||
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: 0x06000743 RID: 1859 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000743")]
|
||||
[Address(RVA = "0x4EB300", Offset = "0x4EA100", VA = "0x1804EB300", 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: 0x06000744 RID: 1860 RVA: 0x00004E00 File Offset: 0x00003000
|
||||
[Token(Token = "0x6000744")]
|
||||
[Address(RVA = "0x4EB520", Offset = "0x4EA320", VA = "0x1804EB520")]
|
||||
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: 0x06000745 RID: 1861 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000745")]
|
||||
[Address(RVA = "0x4EB580", Offset = "0x4EA380", VA = "0x1804EB580")]
|
||||
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: 0x06000746 RID: 1862 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000746")]
|
||||
[Address(RVA = "0x4EBB10", Offset = "0x4EA910", VA = "0x1804EBB10")]
|
||||
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: 0x06000747 RID: 1863 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000747")]
|
||||
[Address(RVA = "0x4EBA40", Offset = "0x4EA840", VA = "0x1804EBA40")]
|
||||
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: 0x06000748 RID: 1864 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000748")]
|
||||
[Address(RVA = "0x4EB480", Offset = "0x4EA280", VA = "0x1804EB480")]
|
||||
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: 0x06000749 RID: 1865 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000749")]
|
||||
[Address(RVA = "0x4EBDB0", Offset = "0x4EABB0", VA = "0x1804EBDB0", 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: 0x0600074A RID: 1866 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600074A")]
|
||||
[Address(RVA = "0x4EBC70", Offset = "0x4EAA70", VA = "0x1804EBC70", 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: 0x0600074B RID: 1867 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600074B")]
|
||||
[Address(RVA = "0x4EBBD0", Offset = "0x4EA9D0", VA = "0x1804EBBD0", 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: 0x0600074C RID: 1868 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600074C")]
|
||||
[Address(RVA = "0x4EBD10", Offset = "0x4EAB10", VA = "0x1804EBD10", 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: 0x0600074D RID: 1869 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600074D")]
|
||||
[Address(RVA = "0x4EB720", Offset = "0x4EA520", VA = "0x1804EB720")]
|
||||
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: 0x0600074E RID: 1870 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600074E")]
|
||||
[Address(RVA = "0x4EB6A0", Offset = "0x4EA4A0", VA = "0x1804EB6A0")]
|
||||
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: 0x1700014F RID: 335
|
||||
// (get) Token: 0x0600074F RID: 1871 RVA: 0x00004E18 File Offset: 0x00003018
|
||||
[Token(Token = "0x1700014F")]
|
||||
int ICollection.Count
|
||||
{
|
||||
[Token(Token = "0x600074F")]
|
||||
[Address(RVA = "0x42EED0", Offset = "0x42DCD0", VA = "0x18042EED0", 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: 0x17000150 RID: 336
|
||||
// (get) Token: 0x06000750 RID: 1872 RVA: 0x00004E30 File Offset: 0x00003030
|
||||
[Token(Token = "0x17000150")]
|
||||
bool ICollection.IsSynchronized
|
||||
{
|
||||
[Token(Token = "0x6000750")]
|
||||
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", 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: 0x17000151 RID: 337
|
||||
// (get) Token: 0x06000751 RID: 1873 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000151")]
|
||||
object ICollection.SyncRoot
|
||||
{
|
||||
[Token(Token = "0x6000751")]
|
||||
[Address(RVA = "0x43E630", Offset = "0x43D430", VA = "0x18043E630", 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: 0x06000752 RID: 1874 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000752")]
|
||||
[Address(RVA = "0x4EBEA0", Offset = "0x4EACA0", VA = "0x1804EBEA0", 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: 0x17000152 RID: 338
|
||||
[Token(Token = "0x17000152")]
|
||||
object IList.this[int index]
|
||||
{
|
||||
[Token(Token = "0x6000753")]
|
||||
[Address(RVA = "0x4A5360", Offset = "0x4A4160", VA = "0x1804A5360", Slot = "9")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6000754")]
|
||||
[Address(RVA = "0x4EC500", Offset = "0x4EB300", VA = "0x1804EC500", 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: 0x06000755 RID: 1877 RVA: 0x00004E48 File Offset: 0x00003048
|
||||
[Token(Token = "0x6000755")]
|
||||
[Address(RVA = "0x4EBF40", Offset = "0x4EAD40", VA = "0x1804EBF40", 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: 0x06000756 RID: 1878 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000756")]
|
||||
[Address(RVA = "0x4EB080", Offset = "0x4E9E80", VA = "0x1804EB080", 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: 0x06000757 RID: 1879 RVA: 0x00004E60 File Offset: 0x00003060
|
||||
[Token(Token = "0x6000757")]
|
||||
[Address(RVA = "0x4EC0A0", Offset = "0x4EAEA0", VA = "0x1804EC0A0", 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: 0x06000758 RID: 1880 RVA: 0x00004E78 File Offset: 0x00003078
|
||||
[Token(Token = "0x6000758")]
|
||||
[Address(RVA = "0x4EC170", Offset = "0x4EAF70", VA = "0x1804EC170", 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: 0x06000759 RID: 1881 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000759")]
|
||||
[Address(RVA = "0x4EC240", Offset = "0x4EB040", VA = "0x1804EC240", 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: 0x0600075A RID: 1882 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600075A")]
|
||||
[Address(RVA = "0x4EC3D0", Offset = "0x4EB1D0", VA = "0x1804EC3D0", 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: 0x0600075B RID: 1883 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600075B")]
|
||||
[Address(RVA = "0x4EC3C0", Offset = "0x4EB1C0", VA = "0x1804EC3C0", 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: 0x17000153 RID: 339
|
||||
// (get) Token: 0x0600075C RID: 1884 RVA: 0x00004E90 File Offset: 0x00003090
|
||||
[Token(Token = "0x17000153")]
|
||||
bool IList.IsReadOnly
|
||||
{
|
||||
[Token(Token = "0x600075C")]
|
||||
[Address(RVA = "0x4364F0", Offset = "0x4352F0", VA = "0x1804364F0", 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: 0x17000154 RID: 340
|
||||
// (get) Token: 0x0600075D RID: 1885 RVA: 0x00004EA8 File Offset: 0x000030A8
|
||||
[Token(Token = "0x17000154")]
|
||||
bool IList.IsFixedSize
|
||||
{
|
||||
[Token(Token = "0x600075D")]
|
||||
[Address(RVA = "0x4364F0", Offset = "0x4352F0", VA = "0x1804364F0", Slot = "15")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x040004E0 RID: 1248
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x40004E0")]
|
||||
private EventDescriptor[] events;
|
||||
|
||||
// Token: 0x040004E1 RID: 1249
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x40004E1")]
|
||||
private string[] namedSort;
|
||||
|
||||
// Token: 0x040004E2 RID: 1250
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x40004E2")]
|
||||
private IComparer comparer;
|
||||
|
||||
// Token: 0x040004E3 RID: 1251
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x40004E3")]
|
||||
private bool eventsOwned;
|
||||
|
||||
// Token: 0x040004E4 RID: 1252
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x29")]
|
||||
[Token(Token = "0x40004E4")]
|
||||
private bool needSort;
|
||||
|
||||
// Token: 0x040004E5 RID: 1253
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x2C")]
|
||||
[Token(Token = "0x40004E5")]
|
||||
private int eventCount;
|
||||
|
||||
// Token: 0x040004E6 RID: 1254
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x40004E6")]
|
||||
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: 0x040004E7 RID: 1255
|
||||
[Token(Token = "0x40004E7")]
|
||||
public static readonly EventDescriptorCollection Empty;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user