Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

731 lines
32 KiB
C#

using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Represents a collection of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects.</summary>
// Token: 0x02000176 RID: 374
[Token(Token = "0x2000176")]
public class PropertyDescriptorCollection : ICollection, IEnumerable, IList, IDictionary
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> class.</summary>
/// <param name="properties">An array of type <see cref="T:System.ComponentModel.PropertyDescriptor" /> that provides the properties for this collection.</param>
// Token: 0x0600097D RID: 2429 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600097D")]
[Address(RVA = "0xC17090", Offset = "0xC16090", VA = "0x180C17090")]
public PropertyDescriptorCollection(PropertyDescriptor[] properties)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> class, which is optionally read-only.</summary>
/// <param name="properties">An array of type <see cref="T:System.ComponentModel.PropertyDescriptor" /> that provides the properties for this collection.</param>
/// <param name="readOnly">If <see langword="true" />, specifies that the collection cannot be modified.</param>
// Token: 0x0600097E RID: 2430 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600097E")]
[Address(RVA = "0xC17110", Offset = "0xC16110", VA = "0x180C17110")]
public PropertyDescriptorCollection(PropertyDescriptor[] properties, bool readOnly)
{
}
// Token: 0x0600097F RID: 2431 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600097F")]
[Address(RVA = "0xC16FD0", Offset = "0xC15FD0", VA = "0x180C16FD0")]
private PropertyDescriptorCollection(PropertyDescriptor[] properties, int propCount, string[] namedSort, IComparer comparer)
{
}
/// <summary>Gets the number of property descriptors in the collection.</summary>
/// <returns>The number of property descriptors in the collection.</returns>
// Token: 0x170001D9 RID: 473
// (get) Token: 0x06000980 RID: 2432 RVA: 0x00005D48 File Offset: 0x00003F48
[Token(Token = "0x170001D9")]
public int Count
{
[Token(Token = "0x6000980")]
[Address(RVA = "0x471180", Offset = "0x470180", VA = "0x180471180")]
get
{
return 0;
}
}
/// <summary>Gets or sets the <see cref="T:System.ComponentModel.PropertyDescriptor" /> at the specified index number.</summary>
/// <param name="index">The zero-based index of the <see cref="T:System.ComponentModel.PropertyDescriptor" /> to get or set.</param>
/// <returns>The <see cref="T:System.ComponentModel.PropertyDescriptor" /> with the specified index number.</returns>
/// <exception cref="T:System.IndexOutOfRangeException">The <paramref name="index" /> parameter is not a valid index for <see cref="P:System.ComponentModel.PropertyDescriptorCollection.Item(System.Int32)" />.</exception>
// Token: 0x170001DA RID: 474
[Token(Token = "0x170001DA")]
public virtual PropertyDescriptor this[int index]
{
[Token(Token = "0x6000981")]
[Address(RVA = "0xC171B0", Offset = "0xC161B0", VA = "0x180C171B0", Slot = "31")]
get
{
return null;
}
}
/// <summary>Gets or sets the <see cref="T:System.ComponentModel.PropertyDescriptor" /> with the specified name.</summary>
/// <param name="name">The name of the <see cref="T:System.ComponentModel.PropertyDescriptor" /> to get from the collection.</param>
/// <returns>The <see cref="T:System.ComponentModel.PropertyDescriptor" /> with the specified name, or <see langword="null" /> if the property does not exist.</returns>
// Token: 0x170001DB RID: 475
[Token(Token = "0x170001DB")]
public virtual PropertyDescriptor this[string name]
{
[Token(Token = "0x6000982")]
[Address(RVA = "0xC17190", Offset = "0xC16190", VA = "0x180C17190", Slot = "32")]
get
{
return null;
}
}
/// <summary>Adds the specified <see cref="T:System.ComponentModel.PropertyDescriptor" /> to the collection.</summary>
/// <param name="value">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to add to the collection.</param>
/// <returns>The index of the <see cref="T:System.ComponentModel.PropertyDescriptor" /> that was added to the collection.</returns>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
// Token: 0x06000983 RID: 2435 RVA: 0x00005D60 File Offset: 0x00003F60
[Token(Token = "0x6000983")]
[Address(RVA = "0xC14DD0", Offset = "0xC13DD0", VA = "0x180C14DD0")]
public int Add(PropertyDescriptor value)
{
return 0;
}
/// <summary>Removes all <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects from the collection.</summary>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
// Token: 0x06000984 RID: 2436 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000984")]
[Address(RVA = "0xC14EC0", Offset = "0xC13EC0", VA = "0x180C14EC0")]
public void Clear()
{
}
/// <summary>Returns whether the collection contains the given <see cref="T:System.ComponentModel.PropertyDescriptor" />.</summary>
/// <param name="value">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to find in the collection.</param>
/// <returns>
/// <see langword="true" /> if the collection contains the given <see cref="T:System.ComponentModel.PropertyDescriptor" />; otherwise, <see langword="false" />.</returns>
// Token: 0x06000985 RID: 2437 RVA: 0x00005D78 File Offset: 0x00003F78
[Token(Token = "0x6000985")]
[Address(RVA = "0xC14F30", Offset = "0xC13F30", VA = "0x180C14F30")]
public bool Contains(PropertyDescriptor value)
{
return default(bool);
}
/// <summary>Copies the entire collection to an array, starting at the specified index number.</summary>
/// <param name="array">An array of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects to copy elements of the collection to.</param>
/// <param name="index">The index of the <paramref name="array" /> parameter at which copying begins.</param>
// Token: 0x06000986 RID: 2438 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000986")]
[Address(RVA = "0xC14F90", Offset = "0xC13F90", VA = "0x180C14F90", Slot = "4")]
public void CopyTo(Array array, int index)
{
}
// Token: 0x06000987 RID: 2439 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000987")]
[Address(RVA = "0xC14FE0", Offset = "0xC13FE0", VA = "0x180C14FE0")]
private void EnsurePropsOwned()
{
}
// Token: 0x06000988 RID: 2440 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000988")]
[Address(RVA = "0xC15080", Offset = "0xC14080", VA = "0x180C15080")]
private void EnsureSize(int sizeNeeded)
{
}
/// <summary>Returns the <see cref="T:System.ComponentModel.PropertyDescriptor" /> with the specified name, using a Boolean to indicate whether to ignore case.</summary>
/// <param name="name">The name of the <see cref="T:System.ComponentModel.PropertyDescriptor" /> to return from the collection.</param>
/// <param name="ignoreCase">
/// <see langword="true" /> if you want to ignore the case of the property name; otherwise, <see langword="false" />.</param>
/// <returns>A <see cref="T:System.ComponentModel.PropertyDescriptor" /> with the specified name, or <see langword="null" /> if the property does not exist.</returns>
// Token: 0x06000989 RID: 2441 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000989")]
[Address(RVA = "0xC151A0", Offset = "0xC141A0", VA = "0x180C151A0", Slot = "33")]
public virtual PropertyDescriptor Find(string name, bool ignoreCase)
{
return null;
}
/// <summary>Returns the index of the given <see cref="T:System.ComponentModel.PropertyDescriptor" />.</summary>
/// <param name="value">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to return the index of.</param>
/// <returns>The index of the given <see cref="T:System.ComponentModel.PropertyDescriptor" />.</returns>
// Token: 0x0600098A RID: 2442 RVA: 0x00005D90 File Offset: 0x00003F90
[Token(Token = "0x600098A")]
[Address(RVA = "0xC15610", Offset = "0xC14610", VA = "0x180C15610")]
public int IndexOf(PropertyDescriptor value)
{
return 0;
}
/// <summary>Adds the <see cref="T:System.ComponentModel.PropertyDescriptor" /> to the collection at the specified index number.</summary>
/// <param name="index">The index at which to add the <paramref name="value" /> parameter to the collection.</param>
/// <param name="value">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to add to the collection.</param>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
// Token: 0x0600098B RID: 2443 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600098B")]
[Address(RVA = "0xC15670", Offset = "0xC14670", VA = "0x180C15670")]
public void Insert(int index, PropertyDescriptor value)
{
}
/// <summary>Removes the specified <see cref="T:System.ComponentModel.PropertyDescriptor" /> from the collection.</summary>
/// <param name="value">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to remove from the collection.</param>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
// Token: 0x0600098C RID: 2444 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600098C")]
[Address(RVA = "0xC15D60", Offset = "0xC14D60", VA = "0x180C15D60")]
public void Remove(PropertyDescriptor value)
{
}
/// <summary>Removes the <see cref="T:System.ComponentModel.PropertyDescriptor" /> at the specified index from the collection.</summary>
/// <param name="index">The index of the <see cref="T:System.ComponentModel.PropertyDescriptor" /> to remove from the collection.</param>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
// Token: 0x0600098D RID: 2445 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600098D")]
[Address(RVA = "0xC15C90", Offset = "0xC14C90", VA = "0x180C15C90")]
public void RemoveAt(int index)
{
}
/// <summary>Sorts the members of this collection, using the default sort for this collection, which is usually alphabetical.</summary>
/// <returns>A new <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that contains the sorted <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects.</returns>
// Token: 0x0600098E RID: 2446 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600098E")]
[Address(RVA = "0xC15F60", Offset = "0xC14F60", VA = "0x180C15F60", Slot = "34")]
public virtual PropertyDescriptorCollection Sort()
{
return null;
}
/// <summary>Sorts the members of this collection. 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.PropertyDescriptor" /> objects in this collection.</param>
/// <returns>A new <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that contains the sorted <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects.</returns>
// Token: 0x0600098F RID: 2447 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600098F")]
[Address(RVA = "0xC16000", Offset = "0xC15000", VA = "0x180C16000", Slot = "35")]
public virtual PropertyDescriptorCollection Sort(string[] names)
{
return null;
}
/// <summary>Sorts the members of this collection. The specified order is applied first, followed by the sort using the specified <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.PropertyDescriptor" /> objects in this collection.</param>
/// <param name="comparer">A comparer to use to sort the <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects in this collection.</param>
/// <returns>A new <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that contains the sorted <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects.</returns>
// Token: 0x06000990 RID: 2448 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000990")]
[Address(RVA = "0xC15E20", Offset = "0xC14E20", VA = "0x180C15E20", Slot = "36")]
public virtual PropertyDescriptorCollection Sort(string[] names, IComparer comparer)
{
return null;
}
/// <summary>Sorts the members of this collection, using the specified <see cref="T:System.Collections.IComparer" />.</summary>
/// <param name="comparer">A comparer to use to sort the <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects in this collection.</param>
/// <returns>A new <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that contains the sorted <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects.</returns>
// Token: 0x06000991 RID: 2449 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000991")]
[Address(RVA = "0xC15EC0", Offset = "0xC14EC0", VA = "0x180C15EC0", Slot = "37")]
public virtual PropertyDescriptorCollection Sort(IComparer comparer)
{
return null;
}
/// <summary>Sorts the members of this collection. 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.PropertyDescriptor" /> objects in this collection.</param>
// Token: 0x06000992 RID: 2450 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000992")]
[Address(RVA = "0xC158E0", Offset = "0xC148E0", VA = "0x180C158E0")]
protected void InternalSort(string[] names)
{
}
/// <summary>Sorts the members of this collection, 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.PropertyDescriptor" /> objects in this collection.</param>
// Token: 0x06000993 RID: 2451 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000993")]
[Address(RVA = "0xC15790", Offset = "0xC14790", VA = "0x180C15790")]
protected void InternalSort(IComparer sorter)
{
}
/// <summary>Returns an enumerator for this class.</summary>
/// <returns>An enumerator of type <see cref="T:System.Collections.IEnumerator" />.</returns>
// Token: 0x06000994 RID: 2452 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000994")]
[Address(RVA = "0xC15560", Offset = "0xC14560", VA = "0x180C15560", Slot = "38")]
public virtual IEnumerator GetEnumerator()
{
return null;
}
/// <summary>Gets the number of elements contained in the collection.</summary>
/// <returns>The number of elements contained in the collection.</returns>
// Token: 0x170001DC RID: 476
// (get) Token: 0x06000995 RID: 2453 RVA: 0x00005DA8 File Offset: 0x00003FA8
[Token(Token = "0x170001DC")]
int ICollection.Count
{
[Token(Token = "0x6000995")]
[Address(RVA = "0x471180", Offset = "0x470180", VA = "0x180471180", Slot = "5")]
get
{
return 0;
}
}
/// <summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
/// <returns>
/// <see langword="true" /> if access to the collection is synchronized (thread safe); otherwise, <see langword="false" />.</returns>
// Token: 0x170001DD RID: 477
// (get) Token: 0x06000996 RID: 2454 RVA: 0x00005DC0 File Offset: 0x00003FC0
[Token(Token = "0x170001DD")]
bool ICollection.IsSynchronized
{
[Token(Token = "0x6000996")]
[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: 0x170001DE RID: 478
// (get) Token: 0x06000997 RID: 2455 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170001DE")]
object ICollection.SyncRoot
{
[Token(Token = "0x6000997")]
[Address(RVA = "0x4242C0", Offset = "0x4232C0", VA = "0x1804242C0", Slot = "6")]
get
{
return null;
}
}
/// <summary>Adds an element with the provided key and value to the <see cref="T:System.Collections.IDictionary" />.</summary>
/// <param name="key">The <see cref="T:System.Object" /> to use as the key of the element to add.</param>
/// <param name="value">The <see cref="T:System.Object" /> to use as the value of the element to add.</param>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="value" /> is <see langword="null" />.</exception>
// Token: 0x06000998 RID: 2456 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000998")]
[Address(RVA = "0xC160A0", Offset = "0xC150A0", VA = "0x180C160A0", Slot = "25")]
void IDictionary.Add(object key, object value)
{
}
/// <summary>Removes all elements from the <see cref="T:System.Collections.IDictionary" />.</summary>
// Token: 0x06000999 RID: 2457 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000999")]
[Address(RVA = "0xC14EC0", Offset = "0xC13EC0", VA = "0x180C14EC0", Slot = "26")]
void IDictionary.Clear()
{
}
/// <summary>Determines whether the <see cref="T:System.Collections.IDictionary" /> contains an element with the specified key.</summary>
/// <param name="key">The key to locate in the <see cref="T:System.Collections.IDictionary" />.</param>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.Collections.IDictionary" /> contains an element with the key; otherwise, <see langword="false" />.</returns>
// Token: 0x0600099A RID: 2458 RVA: 0x00005DD8 File Offset: 0x00003FD8
[Token(Token = "0x600099A")]
[Address(RVA = "0xC16160", Offset = "0xC15160", VA = "0x180C16160", Slot = "24")]
bool IDictionary.Contains(object key)
{
return default(bool);
}
/// <summary>Returns an enumerator for this class.</summary>
/// <returns>An enumerator of type <see cref="T:System.Collections.IEnumerator" />.</returns>
// Token: 0x0600099B RID: 2459 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600099B")]
[Address(RVA = "0xC16200", Offset = "0xC15200", VA = "0x180C16200", Slot = "29")]
IDictionaryEnumerator IDictionary.GetEnumerator()
{
return null;
}
/// <summary>Gets a value indicating whether the <see cref="T:System.Collections.IDictionary" /> has a fixed size.</summary>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.Collections.IDictionary" /> has a fixed size; otherwise, <see langword="false" />.</returns>
// Token: 0x170001DF RID: 479
// (get) Token: 0x0600099C RID: 2460 RVA: 0x00005DF0 File Offset: 0x00003FF0
[Token(Token = "0x170001DF")]
bool IDictionary.IsFixedSize
{
[Token(Token = "0x600099C")]
[Address(RVA = "0x6B4BD0", Offset = "0x6B3BD0", VA = "0x1806B4BD0", Slot = "28")]
get
{
return default(bool);
}
}
/// <summary>Gets a value indicating whether the <see cref="T:System.Collections.IDictionary" /> is read-only.</summary>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.Collections.IDictionary" /> is read-only; otherwise, <see langword="false" />.</returns>
// Token: 0x170001E0 RID: 480
// (get) Token: 0x0600099D RID: 2461 RVA: 0x00005E08 File Offset: 0x00004008
[Token(Token = "0x170001E0")]
bool IDictionary.IsReadOnly
{
[Token(Token = "0x600099D")]
[Address(RVA = "0x6B4BD0", Offset = "0x6B3BD0", VA = "0x1806B4BD0", Slot = "27")]
get
{
return default(bool);
}
}
/// <summary>Gets or sets the element with the specified key.</summary>
/// <param name="key">The key of the element to get or set.</param>
/// <returns>The element with the specified key.</returns>
// Token: 0x170001E1 RID: 481
[Token(Token = "0x170001E1")]
object IDictionary.this[object key]
{
[Token(Token = "0x600099E")]
[Address(RVA = "0xC16300", Offset = "0xC15300", VA = "0x180C16300", Slot = "20")]
get
{
return null;
}
[Token(Token = "0x600099F")]
[Address(RVA = "0xC16560", Offset = "0xC15560", VA = "0x180C16560", Slot = "21")]
set
{
}
}
/// <summary>Gets an <see cref="T:System.Collections.ICollection" /> containing the keys of the <see cref="T:System.Collections.IDictionary" />.</summary>
/// <returns>An <see cref="T:System.Collections.ICollection" /> containing the keys of the <see cref="T:System.Collections.IDictionary" />.</returns>
// Token: 0x170001E2 RID: 482
// (get) Token: 0x060009A0 RID: 2464 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170001E2")]
ICollection IDictionary.Keys
{
[Token(Token = "0x60009A0")]
[Address(RVA = "0xC16390", Offset = "0xC15390", VA = "0x180C16390", Slot = "22")]
get
{
return null;
}
}
/// <summary>Gets an <see cref="T:System.Collections.ICollection" /> containing the values in the <see cref="T:System.Collections.IDictionary" />.</summary>
/// <returns>An <see cref="T:System.Collections.ICollection" /> containing the values in the <see cref="T:System.Collections.IDictionary" />.</returns>
// Token: 0x170001E3 RID: 483
// (get) Token: 0x060009A1 RID: 2465 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170001E3")]
ICollection IDictionary.Values
{
[Token(Token = "0x60009A1")]
[Address(RVA = "0xC164A0", Offset = "0xC154A0", VA = "0x180C164A0", Slot = "23")]
get
{
return null;
}
}
/// <summary>Removes the element with the specified key from the <see cref="T:System.Collections.IDictionary" />.</summary>
/// <param name="key">The key of the element to remove.</param>
// Token: 0x060009A2 RID: 2466 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60009A2")]
[Address(RVA = "0xC16260", Offset = "0xC15260", VA = "0x180C16260", Slot = "30")]
void IDictionary.Remove(object key)
{
}
/// <summary>Returns an <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Collections.IDictionary" />.</summary>
/// <returns>An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Collections.IDictionary" />.</returns>
// Token: 0x060009A3 RID: 2467 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60009A3")]
[Address(RVA = "0x67F8D0", Offset = "0x67E8D0", VA = "0x18067F8D0", Slot = "8")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
/// <summary>Adds an item to the <see cref="T:System.Collections.IList" />.</summary>
/// <param name="value">The item to add to the collection.</param>
/// <returns>The position into which the new element was inserted.</returns>
// Token: 0x060009A4 RID: 2468 RVA: 0x00005E20 File Offset: 0x00004020
[Token(Token = "0x60009A4")]
[Address(RVA = "0xC16890", Offset = "0xC15890", VA = "0x180C16890", Slot = "11")]
int IList.Add(object value)
{
return 0;
}
/// <summary>Removes all items from the collection.</summary>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
// Token: 0x060009A5 RID: 2469 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60009A5")]
[Address(RVA = "0xC14EC0", Offset = "0xC13EC0", VA = "0x180C14EC0", Slot = "13")]
void IList.Clear()
{
}
/// <summary>Determines whether the collection contains a specific value.</summary>
/// <param name="value">The item to locate in the collection.</param>
/// <returns>
/// <see langword="true" /> if the item is found in the collection; otherwise, <see langword="false" />.</returns>
// Token: 0x060009A6 RID: 2470 RVA: 0x00005E38 File Offset: 0x00004038
[Token(Token = "0x60009A6")]
[Address(RVA = "0xC16930", Offset = "0xC15930", VA = "0x180C16930", Slot = "12")]
bool IList.Contains(object value)
{
return default(bool);
}
/// <summary>Determines the index of a specified item in the collection.</summary>
/// <param name="value">The item to locate in the collection.</param>
/// <returns>The index of <paramref name="value" /> if found in the list, otherwise -1.</returns>
// Token: 0x060009A7 RID: 2471 RVA: 0x00005E50 File Offset: 0x00004050
[Token(Token = "0x60009A7")]
[Address(RVA = "0xC16A00", Offset = "0xC15A00", VA = "0x180C16A00", Slot = "16")]
int IList.IndexOf(object value)
{
return 0;
}
/// <summary>Inserts an item into the collection at a specified index.</summary>
/// <param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param>
/// <param name="value">The item to insert into the collection.</param>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
// Token: 0x060009A8 RID: 2472 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60009A8")]
[Address(RVA = "0xC16AD0", Offset = "0xC15AD0", VA = "0x180C16AD0", Slot = "17")]
void IList.Insert(int index, object value)
{
}
/// <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: 0x170001E4 RID: 484
// (get) Token: 0x060009A9 RID: 2473 RVA: 0x00005E68 File Offset: 0x00004068
[Token(Token = "0x170001E4")]
bool IList.IsReadOnly
{
[Token(Token = "0x60009A9")]
[Address(RVA = "0x6B4BD0", Offset = "0x6B3BD0", VA = "0x1806B4BD0", 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: 0x170001E5 RID: 485
// (get) Token: 0x060009AA RID: 2474 RVA: 0x00005E80 File Offset: 0x00004080
[Token(Token = "0x170001E5")]
bool IList.IsFixedSize
{
[Token(Token = "0x60009AA")]
[Address(RVA = "0x6B4BD0", Offset = "0x6B3BD0", VA = "0x1806B4BD0", Slot = "15")]
get
{
return default(bool);
}
}
/// <summary>Removes the first occurrence of a specified value from the collection.</summary>
/// <param name="value">The item to remove from the collection.</param>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
// Token: 0x060009AB RID: 2475 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60009AB")]
[Address(RVA = "0xC16C60", Offset = "0xC15C60", VA = "0x180C16C60", 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: 0x060009AC RID: 2476 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60009AC")]
[Address(RVA = "0xC16C50", Offset = "0xC15C50", VA = "0x180C16C50", Slot = "19")]
void IList.RemoveAt(int index)
{
}
/// <summary>Gets or sets an item from the collection at a specified index.</summary>
/// <param name="index">The zero-based index of the item 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.ArgumentException">
/// <paramref name="value" /> is not a <see cref="T:System.ComponentModel.PropertyDescriptor" />.</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: 0x170001E6 RID: 486
[Token(Token = "0x170001E6")]
object IList.this[int index]
{
[Token(Token = "0x60009AD")]
[Address(RVA = "0xC16D90", Offset = "0xC15D90", VA = "0x180C16D90", Slot = "9")]
get
{
return null;
}
[Token(Token = "0x60009AE")]
[Address(RVA = "0xC16DB0", Offset = "0xC15DB0", VA = "0x180C16DB0", Slot = "10")]
set
{
}
}
/// <summary>Specifies an empty collection that you can use instead of creating a new one with no items. This <see langword="static" /> field is read-only.</summary>
// Token: 0x04000588 RID: 1416
[Token(Token = "0x4000588")]
public static readonly PropertyDescriptorCollection Empty;
// Token: 0x04000589 RID: 1417
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000589")]
private IDictionary cachedFoundProperties;
// Token: 0x0400058A RID: 1418
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400058A")]
private bool cachedIgnoreCase;
// Token: 0x0400058B RID: 1419
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x400058B")]
private PropertyDescriptor[] properties;
// Token: 0x0400058C RID: 1420
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x400058C")]
private int propCount;
// Token: 0x0400058D RID: 1421
[FieldOffset(Offset = "0x30")]
[Token(Token = "0x400058D")]
private string[] namedSort;
// Token: 0x0400058E RID: 1422
[FieldOffset(Offset = "0x38")]
[Token(Token = "0x400058E")]
private IComparer comparer;
// Token: 0x0400058F RID: 1423
[FieldOffset(Offset = "0x40")]
[Token(Token = "0x400058F")]
private bool propsOwned;
// Token: 0x04000590 RID: 1424
[FieldOffset(Offset = "0x41")]
[Token(Token = "0x4000590")]
private bool needSort;
// Token: 0x04000591 RID: 1425
[FieldOffset(Offset = "0x42")]
[Token(Token = "0x4000591")]
private bool readOnly;
// Token: 0x02000177 RID: 375
[Token(Token = "0x2000177")]
private class PropertyDescriptorEnumerator : IDictionaryEnumerator, IEnumerator
{
// Token: 0x060009B0 RID: 2480 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60009B0")]
[Address(RVA = "0x4EDE60", Offset = "0x4ECE60", VA = "0x1804EDE60")]
public PropertyDescriptorEnumerator(PropertyDescriptorCollection owner)
{
}
// Token: 0x170001E7 RID: 487
// (get) Token: 0x060009B1 RID: 2481 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170001E7")]
public object Current
{
[Token(Token = "0x60009B1")]
[Address(RVA = "0xC17290", Offset = "0xC16290", VA = "0x180C17290", Slot = "8")]
get
{
return null;
}
}
// Token: 0x170001E8 RID: 488
// (get) Token: 0x060009B2 RID: 2482 RVA: 0x00005E98 File Offset: 0x00004098
[Token(Token = "0x170001E8")]
public DictionaryEntry Entry
{
[Token(Token = "0x60009B2")]
[Address(RVA = "0xC17340", Offset = "0xC16340", VA = "0x180C17340", Slot = "6")]
get
{
return default(DictionaryEntry);
}
}
// Token: 0x170001E9 RID: 489
// (get) Token: 0x060009B3 RID: 2483 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170001E9")]
public object Key
{
[Token(Token = "0x60009B3")]
[Address(RVA = "0xC173C0", Offset = "0xC163C0", VA = "0x180C173C0", Slot = "4")]
get
{
return null;
}
}
// Token: 0x170001EA RID: 490
// (get) Token: 0x060009B4 RID: 2484 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170001EA")]
public object Value
{
[Token(Token = "0x60009B4")]
[Address(RVA = "0xC173C0", Offset = "0xC163C0", VA = "0x180C173C0", Slot = "5")]
get
{
return null;
}
}
// Token: 0x060009B5 RID: 2485 RVA: 0x00005EB0 File Offset: 0x000040B0
[Token(Token = "0x60009B5")]
[Address(RVA = "0xC17250", Offset = "0xC16250", VA = "0x180C17250", Slot = "7")]
public bool MoveNext()
{
return default(bool);
}
// Token: 0x060009B6 RID: 2486 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60009B6")]
[Address(RVA = "0x4EDE50", Offset = "0x4ECE50", VA = "0x1804EDE50", Slot = "9")]
public void Reset()
{
}
// Token: 0x04000592 RID: 1426
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000592")]
private PropertyDescriptorCollection owner;
// Token: 0x04000593 RID: 1427
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000593")]
private int index;
}
}
}