This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
+60
View File
@@ -0,0 +1,60 @@
using System;
using Cpp2IlInjected;
namespace System.Buffers
{
// Token: 0x02000216 RID: 534
[Token(Token = "0x2000216")]
internal abstract class ArrayPool<T>
{
// Token: 0x17000289 RID: 649
// (get) Token: 0x06000DB9 RID: 3513 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000289")]
public static ArrayPool<T> Shared
{
[Token(Token = "0x6000DB9")]
[Address(RVA = "0x2799770", Offset = "0x2798570", VA = "0x182799770")]
get
{
return null;
}
}
// Token: 0x06000DBA RID: 3514 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000DBA")]
[Address(RVA = "0x2799680", Offset = "0x2798480", VA = "0x182799680")]
private static ArrayPool<T> EnsureSharedCreated()
{
return null;
}
// Token: 0x06000DBB RID: 3515 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000DBB")]
[Address(RVA = "0x27995C0", Offset = "0x27983C0", VA = "0x1827995C0")]
public static ArrayPool<T> Create()
{
return null;
}
// Token: 0x06000DBC RID: 3516
[Token(Token = "0x6000DBC")]
[Address(Slot = "4")]
public abstract T[] Rent(int minimumLength);
// Token: 0x06000DBD RID: 3517
[Token(Token = "0x6000DBD")]
[Address(Slot = "5")]
public abstract void Return(T[] array, bool clearArray = false);
// Token: 0x06000DBE RID: 3518 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000DBE")]
[Address(RVA = "0x118F5A0", Offset = "0x118E3A0", VA = "0x18118F5A0")]
protected ArrayPool()
{
}
// Token: 0x04000777 RID: 1911
[Token(Token = "0x4000777")]
private static ArrayPool<T> s_sharedInstance;
}
}
+62
View File
@@ -0,0 +1,62 @@
using System;
using System.Diagnostics.Tracing;
using Cpp2IlInjected;
namespace System.Buffers
{
// Token: 0x02000217 RID: 535
[Token(Token = "0x2000217")]
[EventSource]
internal sealed class ArrayPoolEventSource : EventSource
{
// Token: 0x06000DBF RID: 3519 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000DBF")]
[Address(RVA = "0x490FE0", Offset = "0x48FDE0", VA = "0x180490FE0")]
[Event(1)]
internal void BufferRented(int bufferId, int bufferSize, int poolId, int bucketId)
{
}
// Token: 0x06000DC0 RID: 3520 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000DC0")]
[Address(RVA = "0x490EC0", Offset = "0x48FCC0", VA = "0x180490EC0")]
[Event(2)]
internal void BufferAllocated(int bufferId, int bufferSize, int poolId, int bucketId, ArrayPoolEventSource.BufferAllocatedReason reason)
{
}
// Token: 0x06000DC1 RID: 3521 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000DC1")]
[Address(RVA = "0x4910F0", Offset = "0x48FEF0", VA = "0x1804910F0")]
[Event(3)]
internal void BufferReturned(int bufferId, int bufferSize, int poolId)
{
}
// Token: 0x06000DC2 RID: 3522 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000DC2")]
[Address(RVA = "0x4911B0", Offset = "0x48FFB0", VA = "0x1804911B0")]
public ArrayPoolEventSource()
{
}
// Token: 0x04000778 RID: 1912
[Token(Token = "0x4000778")]
internal static readonly ArrayPoolEventSource Log;
// Token: 0x02000218 RID: 536
[Token(Token = "0x2000218")]
internal enum BufferAllocatedReason
{
// Token: 0x0400077A RID: 1914
[Token(Token = "0x400077A")]
Pooled,
// Token: 0x0400077B RID: 1915
[Token(Token = "0x400077B")]
OverMaximumSize,
// Token: 0x0400077C RID: 1916
[Token(Token = "0x400077C")]
PoolExhausted
}
}
}
+127
View File
@@ -0,0 +1,127 @@
using System;
using System.Threading;
using Cpp2IlInjected;
namespace System.Buffers
{
// Token: 0x02000219 RID: 537
[Token(Token = "0x2000219")]
internal sealed class DefaultArrayPool<T> : ArrayPool<T>
{
// Token: 0x06000DC4 RID: 3524 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000DC4")]
[Address(RVA = "0x27A9640", Offset = "0x27A8440", VA = "0x1827A9640")]
internal DefaultArrayPool()
{
}
// Token: 0x06000DC5 RID: 3525 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000DC5")]
[Address(RVA = "0x27A9680", Offset = "0x27A8480", VA = "0x1827A9680")]
internal DefaultArrayPool(int maxArrayLength, int maxArraysPerBucket)
{
}
// Token: 0x1700028A RID: 650
// (get) Token: 0x06000DC6 RID: 3526 RVA: 0x00006F90 File Offset: 0x00005190
[Token(Token = "0x1700028A")]
private int Id
{
[Token(Token = "0x6000DC6")]
[Address(RVA = "0x5E00E0", Offset = "0x5DEEE0", VA = "0x1805E00E0")]
get
{
return 0;
}
}
// Token: 0x06000DC7 RID: 3527 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000DC7")]
[Address(RVA = "0x27A8AA0", Offset = "0x27A78A0", VA = "0x1827A8AA0", Slot = "4")]
public override T[] Rent(int minimumLength)
{
return null;
}
// Token: 0x06000DC8 RID: 3528 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000DC8")]
[Address(RVA = "0x27A9490", Offset = "0x27A8290", VA = "0x1827A9490", Slot = "5")]
public override void Return(T[] array, bool clearArray = false)
{
}
// Token: 0x0400077D RID: 1917
[Token(Token = "0x400077D")]
private static T[] s_emptyArray;
// Token: 0x0400077E RID: 1918
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x400077E")]
private readonly DefaultArrayPool<T>.Bucket[] _buckets;
// Token: 0x0200021A RID: 538
[Token(Token = "0x200021A")]
private sealed class Bucket
{
// Token: 0x06000DC9 RID: 3529 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000DC9")]
[Address(RVA = "0x279EE10", Offset = "0x279DC10", VA = "0x18279EE10")]
internal Bucket(int bufferLength, int numberOfBuffers, int poolId)
{
}
// Token: 0x1700028B RID: 651
// (get) Token: 0x06000DCA RID: 3530 RVA: 0x00006FA8 File Offset: 0x000051A8
[Token(Token = "0x1700028B")]
internal int Id
{
[Token(Token = "0x6000DCA")]
[Address(RVA = "0x5E00E0", Offset = "0x5DEEE0", VA = "0x1805E00E0")]
get
{
return 0;
}
}
// Token: 0x06000DCB RID: 3531 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000DCB")]
[Address(RVA = "0x279E670", Offset = "0x279D470", VA = "0x18279E670")]
internal T[] Rent()
{
return null;
}
// Token: 0x06000DCC RID: 3532 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000DCC")]
[Address(RVA = "0x279EC90", Offset = "0x279DA90", VA = "0x18279EC90")]
internal void Return(T[] array)
{
}
// Token: 0x0400077F RID: 1919
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x400077F")]
internal readonly int _bufferLength;
// Token: 0x04000780 RID: 1920
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000780")]
private readonly T[][] _buffers;
// Token: 0x04000781 RID: 1921
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000781")]
private readonly int _poolId;
// Token: 0x04000782 RID: 1922
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000782")]
private SpinLock _lock;
// Token: 0x04000783 RID: 1923
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000783")]
private int _index;
}
}
}
+26
View File
@@ -0,0 +1,26 @@
using System;
using Cpp2IlInjected;
namespace System.Buffers
{
// Token: 0x0200021B RID: 539
[Token(Token = "0x200021B")]
internal static class Utilities
{
// Token: 0x06000DCD RID: 3533 RVA: 0x00006FC0 File Offset: 0x000051C0
[Token(Token = "0x6000DCD")]
[Address(RVA = "0x4A9740", Offset = "0x4A8540", VA = "0x1804A9740")]
internal static int SelectBucketIndex(int bufferSize)
{
return 0;
}
// Token: 0x06000DCE RID: 3534 RVA: 0x00006FD8 File Offset: 0x000051D8
[Token(Token = "0x6000DCE")]
[Address(RVA = "0x4A9730", Offset = "0x4A8530", VA = "0x1804A9730")]
internal static int GetMaxSizeForBucket(int binIndex)
{
return 0;
}
}
}
@@ -0,0 +1,32 @@
using System;
using Cpp2IlInjected;
namespace System.CodeDom.Compiler
{
/// <summary>Identifies code generated by a tool. This class cannot be inherited.</summary>
// Token: 0x020001F7 RID: 503
[Token(Token = "0x20001F7")]
[AttributeUsage(AttributeTargets.All)]
public sealed class GeneratedCodeAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.GeneratedCodeAttribute" /> class specifying the name and version of the tool that generated the code.</summary>
/// <param name="tool">The name of the tool that generated the code.</param>
/// <param name="version">The version of the tool that generated the code.</param>
// Token: 0x06000D1F RID: 3359 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000D1F")]
[Address(RVA = "0x497CA0", Offset = "0x496AA0", VA = "0x180497CA0")]
public GeneratedCodeAttribute(string tool, string version)
{
}
// Token: 0x0400070E RID: 1806
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400070E")]
private readonly string tool;
// Token: 0x0400070F RID: 1807
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400070F")]
private readonly string version;
}
}
@@ -0,0 +1,11 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
// Token: 0x02000346 RID: 838
[Token(Token = "0x2000346")]
internal sealed class DictionaryKeyCollectionDebugView<TKey, TValue>
{
}
}
@@ -0,0 +1,11 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
// Token: 0x02000347 RID: 839
[Token(Token = "0x2000347")]
internal sealed class DictionaryValueCollectionDebugView<TKey, TValue>
{
}
}
@@ -0,0 +1,18 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
// Token: 0x02000343 RID: 835
[Token(Token = "0x2000343")]
internal static class EnumerableHelpers
{
// Token: 0x060015EA RID: 5610 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60015EA")]
[Address(RVA = "0x2385190", Offset = "0x2383F90", VA = "0x182385190")]
internal static T[] ToArray<T>(IEnumerable<T> source, out int length)
{
return null;
}
}
}
@@ -0,0 +1,11 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
// Token: 0x02000344 RID: 836
[Token(Token = "0x2000344")]
internal sealed class ICollectionDebugView<T>
{
}
}
@@ -0,0 +1,11 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
// Token: 0x02000345 RID: 837
[Token(Token = "0x2000345")]
internal sealed class IDictionaryDebugView<K, V>
{
}
}
+39
View File
@@ -0,0 +1,39 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
/// <summary>Provides the base interface for the abstraction of sets.</summary>
/// <typeparam name="T">The type of elements in the set.</typeparam>
// Token: 0x02000371 RID: 881
[Token(Token = "0x2000371")]
public interface ISet<T> : ICollection<T>, IEnumerable<T>, IEnumerable
{
/// <summary>Adds an element to the current set and returns a value to indicate if the element was successfully added.</summary>
/// <param name="item">The element to add to the set.</param>
/// <returns>
/// <see langword="true" /> if the element is added to the set; <see langword="false" /> if the element is already in the set.</returns>
// Token: 0x06001786 RID: 6022
[Token(Token = "0x6001786")]
[Address(Slot = "0")]
bool Add(T item);
/// <summary>Modifies the current set so that it contains all elements that are present in the current set, in the specified collection, or in both.</summary>
/// <param name="other">The collection to compare to the current set.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="other" /> is <see langword="null" />.</exception>
// Token: 0x06001787 RID: 6023
[Token(Token = "0x6001787")]
[Address(Slot = "1")]
void UnionWith(IEnumerable<T> other);
/// <summary>Modifies the current set so that it contains only elements that are also in a specified collection.</summary>
/// <param name="other">The collection to compare to the current set.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="other" /> is <see langword="null" />.</exception>
// Token: 0x06001788 RID: 6024
[Token(Token = "0x6001788")]
[Address(Slot = "2")]
void IntersectWith(IEnumerable<T> other);
}
}
+591
View File
@@ -0,0 +1,591 @@
using System;
using System.Diagnostics;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
/// <summary>Represents a doubly linked list.</summary>
/// <typeparam name="T">Specifies the element type of the linked list.</typeparam>
// Token: 0x02000348 RID: 840
[Token(Token = "0x2000348")]
[DebuggerDisplay("Count = {Count}")]
[DebuggerTypeProxy(typeof(ICollectionDebugView<>))]
[Serializable]
public class LinkedList<T> : ICollection<T>, IEnumerable<T>, IEnumerable, ICollection, IReadOnlyCollection<T>, ISerializable, IDeserializationCallback
{
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.LinkedList`1" /> class that is empty.</summary>
// Token: 0x060015EB RID: 5611 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015EB")]
[Address(RVA = "0x118F5A0", Offset = "0x118E3A0", VA = "0x18118F5A0")]
public LinkedList()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.LinkedList`1" /> class that is serializable with the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" />.</summary>
/// <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object containing the information required to serialize the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
/// <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object containing the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
// Token: 0x060015EC RID: 5612 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015EC")]
[Address(RVA = "0x1D64B30", Offset = "0x1D63930", VA = "0x181D64B30")]
protected LinkedList(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Gets the number of nodes actually contained in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <returns>The number of nodes actually contained in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</returns>
// Token: 0x1700048C RID: 1164
// (get) Token: 0x060015ED RID: 5613 RVA: 0x00009B10 File Offset: 0x00007D10
[Token(Token = "0x1700048C")]
public int Count
{
[Token(Token = "0x60015ED")]
[Address(RVA = "0x40B720", Offset = "0x40A520", VA = "0x18040B720", Slot = "17")]
get
{
return 0;
}
}
/// <summary>Gets the first node of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <returns>The first <see cref="T:System.Collections.Generic.LinkedListNode`1" /> of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</returns>
// Token: 0x1700048D RID: 1165
// (get) Token: 0x060015EE RID: 5614 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700048D")]
public LinkedListNode<T> First
{
[Token(Token = "0x60015EE")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
/// <summary>Gets the last node of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <returns>The last <see cref="T:System.Collections.Generic.LinkedListNode`1" /> of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</returns>
// Token: 0x1700048E RID: 1166
// (get) Token: 0x060015EF RID: 5615 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700048E")]
public LinkedListNode<T> Last
{
[Token(Token = "0x60015EF")]
[Address(RVA = "0x1D67680", Offset = "0x1D66480", VA = "0x181D67680")]
get
{
return null;
}
}
// Token: 0x1700048F RID: 1167
// (get) Token: 0x060015F0 RID: 5616 RVA: 0x00009B28 File Offset: 0x00007D28
[Token(Token = "0x1700048F")]
bool ICollection<T>.IsReadOnly
{
[Token(Token = "0x60015F0")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "5")]
get
{
return default(bool);
}
}
// Token: 0x060015F1 RID: 5617 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015F1")]
[Address(RVA = "0x1D66A60", Offset = "0x1D65860", VA = "0x181D66A60", Slot = "6")]
void ICollection<T>.Add(T value)
{
}
/// <summary>Adds a new node containing the specified value after the specified existing node in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <param name="node">The <see cref="T:System.Collections.Generic.LinkedListNode`1" /> after which to insert a new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> containing <paramref name="value" />.</param>
/// <param name="value">The value to add to the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
/// <returns>The new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> containing <paramref name="value" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="node" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.InvalidOperationException">
/// <paramref name="node" /> is not in the current <see cref="T:System.Collections.Generic.LinkedList`1" />.</exception>
// Token: 0x060015F2 RID: 5618 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60015F2")]
[Address(RVA = "0x1D64E40", Offset = "0x1D63C40", VA = "0x181D64E40")]
public LinkedListNode<T> AddAfter(LinkedListNode<T> node, T value)
{
return null;
}
/// <summary>Adds a new node containing the specified value before the specified existing node in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <param name="node">The <see cref="T:System.Collections.Generic.LinkedListNode`1" /> before which to insert a new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> containing <paramref name="value" />.</param>
/// <param name="value">The value to add to the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
/// <returns>The new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> containing <paramref name="value" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="node" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.InvalidOperationException">
/// <paramref name="node" /> is not in the current <see cref="T:System.Collections.Generic.LinkedList`1" />.</exception>
// Token: 0x060015F3 RID: 5619 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60015F3")]
[Address(RVA = "0x21F8A10", Offset = "0x21F7810", VA = "0x1821F8A10")]
public LinkedListNode<T> AddBefore(LinkedListNode<T> node, T value)
{
return null;
}
/// <summary>Adds the specified new node before the specified existing node in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <param name="node">The <see cref="T:System.Collections.Generic.LinkedListNode`1" /> before which to insert <paramref name="newNode" />.</param>
/// <param name="newNode">The new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> to add to the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="node" /> is <see langword="null" />.
/// -or-
/// <paramref name="newNode" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.InvalidOperationException">
/// <paramref name="node" /> is not in the current <see cref="T:System.Collections.Generic.LinkedList`1" />.
/// -or-
/// <paramref name="newNode" /> belongs to another <see cref="T:System.Collections.Generic.LinkedList`1" />.</exception>
// Token: 0x060015F4 RID: 5620 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015F4")]
[Address(RVA = "0x1D65020", Offset = "0x1D63E20", VA = "0x181D65020")]
public void AddBefore(LinkedListNode<T> node, LinkedListNode<T> newNode)
{
}
/// <summary>Adds a new node containing the specified value at the start of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <param name="value">The value to add at the start of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
/// <returns>The new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> containing <paramref name="value" />.</returns>
// Token: 0x060015F5 RID: 5621 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60015F5")]
[Address(RVA = "0x1D652B0", Offset = "0x1D640B0", VA = "0x181D652B0")]
public LinkedListNode<T> AddFirst(T value)
{
return null;
}
/// <summary>Adds the specified new node at the start of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <param name="node">The new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> to add at the start of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="node" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.InvalidOperationException">
/// <paramref name="node" /> belongs to another <see cref="T:System.Collections.Generic.LinkedList`1" />.</exception>
// Token: 0x060015F6 RID: 5622 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015F6")]
[Address(RVA = "0x1D65380", Offset = "0x1D64180", VA = "0x181D65380")]
public void AddFirst(LinkedListNode<T> node)
{
}
/// <summary>Adds a new node containing the specified value at the end of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <param name="value">The value to add at the end of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
/// <returns>The new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> containing <paramref name="value" />.</returns>
// Token: 0x060015F7 RID: 5623 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60015F7")]
[Address(RVA = "0x21F8D80", Offset = "0x21F7B80", VA = "0x1821F8D80")]
public LinkedListNode<T> AddLast(T value)
{
return null;
}
/// <summary>Adds the specified new node at the end of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <param name="node">The new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> to add at the end of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="node" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.InvalidOperationException">
/// <paramref name="node" /> belongs to another <see cref="T:System.Collections.Generic.LinkedList`1" />.</exception>
// Token: 0x060015F8 RID: 5624 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015F8")]
[Address(RVA = "0x1D65660", Offset = "0x1D64460", VA = "0x181D65660")]
public void AddLast(LinkedListNode<T> node)
{
}
/// <summary>Removes all nodes from the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
// Token: 0x060015F9 RID: 5625 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015F9")]
[Address(RVA = "0x1D656F0", Offset = "0x1D644F0", VA = "0x181D656F0", Slot = "7")]
public void Clear()
{
}
/// <summary>Determines whether a value is in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.LinkedList`1" />. The value can be <see langword="null" /> for reference types.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> is found in the <see cref="T:System.Collections.Generic.LinkedList`1" />; otherwise, <see langword="false" />.</returns>
// Token: 0x060015FA RID: 5626 RVA: 0x00009B40 File Offset: 0x00007D40
[Token(Token = "0x60015FA")]
[Address(RVA = "0x1D657C0", Offset = "0x1D645C0", VA = "0x181D657C0", Slot = "8")]
public bool Contains(T value)
{
return default(bool);
}
/// <summary>Copies the entire <see cref="T:System.Collections.Generic.LinkedList`1" /> to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array.</summary>
/// <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.LinkedList`1" />. 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>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.</exception>
/// <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.LinkedList`1" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
// Token: 0x060015FB RID: 5627 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015FB")]
[Address(RVA = "0x21F9390", Offset = "0x21F8190", VA = "0x1821F9390", Slot = "9")]
public void CopyTo(T[] array, int index)
{
}
/// <summary>Finds the first node that contains the specified value.</summary>
/// <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
/// <returns>The first <see cref="T:System.Collections.Generic.LinkedListNode`1" /> that contains the specified value, if found; otherwise, <see langword="null" />.</returns>
// Token: 0x060015FC RID: 5628 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60015FC")]
[Address(RVA = "0x1D65CD0", Offset = "0x1D64AD0", VA = "0x181D65CD0")]
public LinkedListNode<T> Find(T value)
{
return null;
}
/// <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <returns>An <see cref="T:System.Collections.Generic.LinkedList`1.Enumerator" /> for the <see cref="T:System.Collections.Generic.LinkedList`1" />.</returns>
// Token: 0x060015FD RID: 5629 RVA: 0x00009B58 File Offset: 0x00007D58
[Token(Token = "0x60015FD")]
[Address(RVA = "0x21F99F0", Offset = "0x21F87F0", VA = "0x1821F99F0")]
public LinkedList<T>.Enumerator GetEnumerator()
{
return default(LinkedList<T>.Enumerator);
}
// Token: 0x060015FE RID: 5630 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60015FE")]
[Address(RVA = "0x1D66AA0", Offset = "0x1D658A0", VA = "0x181D66AA0", Slot = "11")]
IEnumerator<T> IEnumerable<T>.GetEnumerator()
{
return null;
}
/// <summary>Removes the first occurrence of the specified value from the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <param name="value">The value to remove from the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
/// <returns>
/// <see langword="true" /> if the element containing <paramref name="value" /> is successfully removed; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="value" /> was not found in the original <see cref="T:System.Collections.Generic.LinkedList`1" />.</returns>
// Token: 0x060015FF RID: 5631 RVA: 0x00009B70 File Offset: 0x00007D70
[Token(Token = "0x60015FF")]
[Address(RVA = "0x1D66920", Offset = "0x1D65720", VA = "0x181D66920", Slot = "10")]
public bool Remove(T value)
{
return default(bool);
}
/// <summary>Removes the specified node from the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <param name="node">The <see cref="T:System.Collections.Generic.LinkedListNode`1" /> to remove from the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="node" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.InvalidOperationException">
/// <paramref name="node" /> is not in the current <see cref="T:System.Collections.Generic.LinkedList`1" />.</exception>
// Token: 0x06001600 RID: 5632 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001600")]
[Address(RVA = "0x1D669B0", Offset = "0x1D657B0", VA = "0x181D669B0")]
public void Remove(LinkedListNode<T> node)
{
}
/// <summary>Removes the node at the start of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.LinkedList`1" /> is empty.</exception>
// Token: 0x06001601 RID: 5633 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001601")]
[Address(RVA = "0x21FA9C0", Offset = "0x21F97C0", VA = "0x1821FA9C0")]
public void RemoveFirst()
{
}
/// <summary>Removes the node at the end of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.LinkedList`1" /> is empty.</exception>
// Token: 0x06001602 RID: 5634 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001602")]
[Address(RVA = "0x1D66780", Offset = "0x1D65580", VA = "0x181D66780")]
public void RemoveLast()
{
}
/// <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and returns the data needed to serialize the <see cref="T:System.Collections.Generic.LinkedList`1" /> instance.</summary>
/// <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information required to serialize the <see cref="T:System.Collections.Generic.LinkedList`1" /> instance.</param>
/// <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.LinkedList`1" /> instance.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="info" /> is <see langword="null" />.</exception>
// Token: 0x06001603 RID: 5635 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001603")]
[Address(RVA = "0x1D65E90", Offset = "0x1D64C90", VA = "0x181D65E90", Slot = "20")]
public virtual void GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and raises the deserialization event when the deserialization is complete.</summary>
/// <param name="sender">The source of the deserialization event.</param>
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object associated with the current <see cref="T:System.Collections.Generic.LinkedList`1" /> instance is invalid.</exception>
// Token: 0x06001604 RID: 5636 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001604")]
[Address(RVA = "0x1D66280", Offset = "0x1D65080", VA = "0x181D66280", Slot = "21")]
public virtual void OnDeserialization(object sender)
{
}
// Token: 0x06001605 RID: 5637 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001605")]
[Address(RVA = "0x1D66190", Offset = "0x1D64F90", VA = "0x181D66190")]
private void InternalInsertNodeBefore(LinkedListNode<T> node, LinkedListNode<T> newNode)
{
}
// Token: 0x06001606 RID: 5638 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001606")]
[Address(RVA = "0x1D661D0", Offset = "0x1D64FD0", VA = "0x181D661D0")]
private void InternalInsertNodeToEmptyList(LinkedListNode<T> newNode)
{
}
// Token: 0x06001607 RID: 5639 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001607")]
[Address(RVA = "0x1D66200", Offset = "0x1D65000", VA = "0x181D66200")]
internal void InternalRemoveNode(LinkedListNode<T> node)
{
}
// Token: 0x06001608 RID: 5640 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001608")]
[Address(RVA = "0x1D67480", Offset = "0x1D66280", VA = "0x181D67480")]
internal void ValidateNewNode(LinkedListNode<T> node)
{
}
// Token: 0x06001609 RID: 5641 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001609")]
[Address(RVA = "0x1D675D0", Offset = "0x1D663D0", VA = "0x181D675D0")]
internal void ValidateNode(LinkedListNode<T> node)
{
}
/// <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
/// <returns>
/// <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />. In the default implementation of <see cref="T:System.Collections.Generic.LinkedList`1" />, this property always returns <see langword="false" />.</returns>
// Token: 0x17000490 RID: 1168
// (get) Token: 0x0600160A RID: 5642 RVA: 0x00009B88 File Offset: 0x00007D88
[Token(Token = "0x17000490")]
bool ICollection.IsSynchronized
{
[Token(Token = "0x600160A")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "16")]
get
{
return default(bool);
}
}
/// <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
/// <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. In the default implementation of <see cref="T:System.Collections.Generic.LinkedList`1" />, this property always returns the current instance.</returns>
// Token: 0x17000491 RID: 1169
// (get) Token: 0x0600160B RID: 5643 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000491")]
object ICollection.SyncRoot
{
[Token(Token = "0x600160B")]
[Address(RVA = "0x1D67300", Offset = "0x1D66100", VA = "0x181D67300", Slot = "15")]
get
{
return null;
}
}
/// <summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> 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 <see cref="T:System.Collections.ICollection" />. 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>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="array" /> is multidimensional.
/// -or-
/// <paramref name="array" /> does not have zero-based indexing.
/// -or-
/// The number of elements in the source <see cref="T:System.Collections.ICollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.
/// -or-
/// The type of the source <see cref="T:System.Collections.ICollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
// Token: 0x0600160C RID: 5644 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600160C")]
[Address(RVA = "0x1D66BD0", Offset = "0x1D659D0", VA = "0x181D66BD0", Slot = "13")]
void ICollection.CopyTo(Array array, int index)
{
}
/// <summary>Returns an enumerator that iterates through the linked list as a collection.</summary>
/// <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the linked list as a collection.</returns>
// Token: 0x0600160D RID: 5645 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600160D")]
[Address(RVA = "0x1D66AA0", Offset = "0x1D658A0", VA = "0x181D66AA0", Slot = "12")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
// Token: 0x04000E46 RID: 3654
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E46")]
internal LinkedListNode<T> head;
// Token: 0x04000E47 RID: 3655
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E47")]
internal int count;
// Token: 0x04000E48 RID: 3656
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E48")]
internal int version;
// Token: 0x04000E49 RID: 3657
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E49")]
private object _syncRoot;
// Token: 0x04000E4A RID: 3658
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E4A")]
private SerializationInfo _siInfo;
// Token: 0x04000E4B RID: 3659
[Token(Token = "0x4000E4B")]
private const string VersionName = "Version";
// Token: 0x04000E4C RID: 3660
[Token(Token = "0x4000E4C")]
private const string CountName = "Count";
// Token: 0x04000E4D RID: 3661
[Token(Token = "0x4000E4D")]
private const string ValuesName = "Data";
/// <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <typeparam name="T" />
// Token: 0x02000349 RID: 841
[Token(Token = "0x2000349")]
[Serializable]
public struct Enumerator : IEnumerator<T>, IDisposable, IEnumerator, ISerializable, IDeserializationCallback
{
// Token: 0x0600160E RID: 5646 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600160E")]
[Address(RVA = "0x1D60FE0", Offset = "0x1D5FDE0", VA = "0x181D60FE0")]
internal Enumerator(LinkedList<T> list)
{
}
// Token: 0x0600160F RID: 5647 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600160F")]
[Address(RVA = "0x1D61220", Offset = "0x1D60020", VA = "0x181D61220")]
private Enumerator(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Gets the element at the current position of the enumerator.</summary>
/// <returns>The element in the <see cref="T:System.Collections.Generic.LinkedList`1" /> at the current position of the enumerator.</returns>
// Token: 0x17000492 RID: 1170
// (get) Token: 0x06001610 RID: 5648 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000492")]
public T Current
{
[Token(Token = "0x6001610")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40", Slot = "4")]
get
{
return null;
}
}
/// <summary>Gets the element at the current position of the enumerator.</summary>
/// <returns>The element in the collection at the current position of the enumerator.</returns>
/// <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
// Token: 0x17000493 RID: 1171
// (get) Token: 0x06001611 RID: 5649 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000493")]
object IEnumerator.Current
{
[Token(Token = "0x6001611")]
[Address(RVA = "0x1D60990", Offset = "0x1D5F790", VA = "0x181D60990", Slot = "7")]
get
{
return null;
}
}
/// <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <returns>
/// <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
// Token: 0x06001612 RID: 5650 RVA: 0x00009BA0 File Offset: 0x00007DA0
[Token(Token = "0x6001612")]
[Address(RVA = "0x1D5FBE0", Offset = "0x1D5E9E0", VA = "0x181D5FBE0", Slot = "6")]
public bool MoveNext()
{
return default(bool);
}
/// <summary>Sets the enumerator to its initial position, which is before the first element in the collection. This class cannot be inherited.</summary>
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
// Token: 0x06001613 RID: 5651 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001613")]
[Address(RVA = "0x1D600E0", Offset = "0x1D5EEE0", VA = "0x181D600E0", Slot = "8")]
void IEnumerator.Reset()
{
}
/// <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.LinkedList`1.Enumerator" />.</summary>
// Token: 0x06001614 RID: 5652 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001614")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080", Slot = "5")]
public void Dispose()
{
}
/// <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and returns the data needed to serialize the <see cref="T:System.Collections.Generic.LinkedList`1" /> instance.</summary>
/// <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information required to serialize the <see cref="T:System.Collections.Generic.LinkedList`1" /> instance.</param>
/// <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.LinkedList`1" /> instance.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="info" /> is <see langword="null" />.</exception>
// Token: 0x06001615 RID: 5653 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001615")]
[Address(RVA = "0x1D60EB0", Offset = "0x1D5FCB0", VA = "0x181D60EB0", Slot = "9")]
void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and raises the deserialization event when the deserialization is complete.</summary>
/// <param name="sender">The source of the deserialization event.</param>
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object associated with the current <see cref="T:System.Collections.Generic.LinkedList`1" /> instance is invalid.</exception>
// Token: 0x06001616 RID: 5654 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001616")]
[Address(RVA = "0x1D60D20", Offset = "0x1D5FB20", VA = "0x181D60D20", Slot = "10")]
void IDeserializationCallback.OnDeserialization(object sender)
{
}
// Token: 0x04000E4E RID: 3662
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E4E")]
private LinkedList<T> _list;
// Token: 0x04000E4F RID: 3663
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E4F")]
private LinkedListNode<T> _node;
// Token: 0x04000E50 RID: 3664
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E50")]
private int _version;
// Token: 0x04000E51 RID: 3665
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E51")]
private T _current;
// Token: 0x04000E52 RID: 3666
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E52")]
private int _index;
}
}
}
@@ -0,0 +1,121 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
/// <summary>Represents a node in a <see cref="T:System.Collections.Generic.LinkedList`1" />. This class cannot be inherited.</summary>
/// <typeparam name="T">Specifies the element type of the linked list.</typeparam>
// Token: 0x0200034A RID: 842
[Token(Token = "0x200034A")]
public sealed class LinkedListNode<T>
{
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.LinkedListNode`1" /> class, containing the specified value.</summary>
/// <param name="value">The value to contain in the <see cref="T:System.Collections.Generic.LinkedListNode`1" />.</param>
// Token: 0x06001617 RID: 5655 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001617")]
[Address(RVA = "0x1D64D30", Offset = "0x1D63B30", VA = "0x181D64D30")]
public LinkedListNode(T value)
{
}
// Token: 0x06001618 RID: 5656 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001618")]
[Address(RVA = "0x1D64CA0", Offset = "0x1D63AA0", VA = "0x181D64CA0")]
internal LinkedListNode(LinkedList<T> list, T value)
{
}
/// <summary>Gets the <see cref="T:System.Collections.Generic.LinkedList`1" /> that the <see cref="T:System.Collections.Generic.LinkedListNode`1" /> belongs to.</summary>
/// <returns>A reference to the <see cref="T:System.Collections.Generic.LinkedList`1" /> that the <see cref="T:System.Collections.Generic.LinkedListNode`1" /> belongs to, or <see langword="null" /> if the <see cref="T:System.Collections.Generic.LinkedListNode`1" /> is not linked.</returns>
// Token: 0x17000494 RID: 1172
// (get) Token: 0x06001619 RID: 5657 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000494")]
public LinkedList<T> List
{
[Token(Token = "0x6001619")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
/// <summary>Gets the next node in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <returns>A reference to the next node in the <see cref="T:System.Collections.Generic.LinkedList`1" />, or <see langword="null" /> if the current node is the last element (<see cref="P:System.Collections.Generic.LinkedList`1.Last" />) of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</returns>
// Token: 0x17000495 RID: 1173
// (get) Token: 0x0600161A RID: 5658 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000495")]
public LinkedListNode<T> Next
{
[Token(Token = "0x600161A")]
[Address(RVA = "0x1D64D70", Offset = "0x1D63B70", VA = "0x181D64D70")]
get
{
return null;
}
}
/// <summary>Gets the previous node in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <returns>A reference to the previous node in the <see cref="T:System.Collections.Generic.LinkedList`1" />, or <see langword="null" /> if the current node is the first element (<see cref="P:System.Collections.Generic.LinkedList`1.First" />) of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</returns>
// Token: 0x17000496 RID: 1174
// (get) Token: 0x0600161B RID: 5659 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000496")]
public LinkedListNode<T> Previous
{
[Token(Token = "0x600161B")]
[Address(RVA = "0x1D64DA0", Offset = "0x1D63BA0", VA = "0x181D64DA0")]
get
{
return null;
}
}
/// <summary>Gets the value contained in the node.</summary>
/// <returns>The value contained in the node.</returns>
// Token: 0x17000497 RID: 1175
// (get) Token: 0x0600161C RID: 5660 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x0600161D RID: 5661 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000497")]
public T Value
{
[Token(Token = "0x600161C")]
[Address(RVA = "0x3F63E0", Offset = "0x3F51E0", VA = "0x1803F63E0")]
get
{
return null;
}
[Token(Token = "0x600161D")]
[Address(RVA = "0x1D64E10", Offset = "0x1D63C10", VA = "0x181D64E10")]
set
{
}
}
// Token: 0x0600161E RID: 5662 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600161E")]
[Address(RVA = "0xBEB1C0", Offset = "0xBE9FC0", VA = "0x180BEB1C0")]
internal void Invalidate()
{
}
// Token: 0x04000E53 RID: 3667
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E53")]
internal LinkedList<T> list;
// Token: 0x04000E54 RID: 3668
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E54")]
internal LinkedListNode<T> next;
// Token: 0x04000E55 RID: 3669
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E55")]
internal LinkedListNode<T> prev;
// Token: 0x04000E56 RID: 3670
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E56")]
internal T item;
}
}
+17
View File
@@ -0,0 +1,17 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
// Token: 0x0200036B RID: 875
[Token(Token = "0x200036B")]
internal enum NodeColor : byte
{
// Token: 0x04000EBA RID: 3770
[Token(Token = "0x4000EBA")]
Black,
// Token: 0x04000EBB RID: 3771
[Token(Token = "0x4000EBB")]
Red
}
}
+363
View File
@@ -0,0 +1,363 @@
using System;
using System.Diagnostics;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
/// <summary>Represents a first-in, first-out collection of objects.</summary>
/// <typeparam name="T">Specifies the type of elements in the queue.</typeparam>
// Token: 0x0200034B RID: 843
[Token(Token = "0x200034B")]
[DebuggerTypeProxy(typeof(QueueDebugView<>))]
[DebuggerDisplay("Count = {Count}")]
[Serializable]
public class Queue<T> : IEnumerable<T>, IEnumerable, ICollection, IReadOnlyCollection<T>
{
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Queue`1" /> class that is empty and has the default initial capacity.</summary>
// Token: 0x0600161F RID: 5663 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600161F")]
[Address(RVA = "0x28EB280", Offset = "0x28EA080", VA = "0x1828EB280")]
public Queue()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Queue`1" /> class that is empty and has the specified initial capacity.</summary>
/// <param name="capacity">The initial number of elements that the <see cref="T:System.Collections.Generic.Queue`1" /> can contain.</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="capacity" /> is less than zero.</exception>
// Token: 0x06001620 RID: 5664 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001620")]
[Address(RVA = "0x2CBC680", Offset = "0x2CBB480", VA = "0x182CBC680")]
public Queue(int capacity)
{
}
/// <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.Queue`1" />.</summary>
/// <returns>The number of elements contained in the <see cref="T:System.Collections.Generic.Queue`1" />.</returns>
// Token: 0x17000498 RID: 1176
// (get) Token: 0x06001621 RID: 5665 RVA: 0x00009BB8 File Offset: 0x00007DB8
[Token(Token = "0x17000498")]
public int Count
{
[Token(Token = "0x6001621")]
[Address(RVA = "0x3F7310", Offset = "0x3F6110", VA = "0x1803F7310", Slot = "10")]
get
{
return 0;
}
}
/// <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
/// <returns>
/// <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />. In the default implementation of <see cref="T:System.Collections.Generic.Queue`1" />, this property always returns <see langword="false" />.</returns>
// Token: 0x17000499 RID: 1177
// (get) Token: 0x06001622 RID: 5666 RVA: 0x00009BD0 File Offset: 0x00007DD0
[Token(Token = "0x17000499")]
bool ICollection.IsSynchronized
{
[Token(Token = "0x6001622")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "9")]
get
{
return default(bool);
}
}
/// <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
/// <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. In the default implementation of <see cref="T:System.Collections.Generic.Queue`1" />, this property always returns the current instance.</returns>
// Token: 0x1700049A RID: 1178
// (get) Token: 0x06001623 RID: 5667 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700049A")]
object ICollection.SyncRoot
{
[Token(Token = "0x6001623")]
[Address(RVA = "0x2CBBDA0", Offset = "0x2CBABA0", VA = "0x182CBBDA0", Slot = "8")]
get
{
return null;
}
}
/// <summary>Removes all objects from the <see cref="T:System.Collections.Generic.Queue`1" />.</summary>
// Token: 0x06001624 RID: 5668 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001624")]
[Address(RVA = "0x2CB9550", Offset = "0x2CB8350", VA = "0x182CB9550")]
public void Clear()
{
}
/// <summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> 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 <see cref="T:System.Collections.ICollection" />. 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>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="array" /> is multidimensional.
/// -or-
/// <paramref name="array" /> does not have zero-based indexing.
/// -or-
/// The number of elements in the source <see cref="T:System.Collections.ICollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.
/// -or-
/// The type of the source <see cref="T:System.Collections.ICollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
// Token: 0x06001625 RID: 5669 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001625")]
[Address(RVA = "0x2CBACA0", Offset = "0x2CB9AA0", VA = "0x182CBACA0", Slot = "6")]
void ICollection.CopyTo(Array array, int index)
{
}
/// <summary>Adds an object to the end of the <see cref="T:System.Collections.Generic.Queue`1" />.</summary>
/// <param name="item">The object to add to the <see cref="T:System.Collections.Generic.Queue`1" />. The value can be <see langword="null" /> for reference types.</param>
// Token: 0x06001626 RID: 5670 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001626")]
[Address(RVA = "0x31326E0", Offset = "0x31314E0", VA = "0x1831326E0")]
public void Enqueue(T item)
{
}
/// <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.Queue`1" />.</summary>
/// <returns>An <see cref="T:System.Collections.Generic.Queue`1.Enumerator" /> for the <see cref="T:System.Collections.Generic.Queue`1" />.</returns>
// Token: 0x06001627 RID: 5671 RVA: 0x00009BE8 File Offset: 0x00007DE8
[Token(Token = "0x6001627")]
[Address(RVA = "0x3132B10", Offset = "0x3131910", VA = "0x183132B10")]
public Queue<T>.Enumerator GetEnumerator()
{
return default(Queue<T>.Enumerator);
}
// Token: 0x06001628 RID: 5672 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001628")]
[Address(RVA = "0x2CBA790", Offset = "0x2CB9590", VA = "0x182CBA790", Slot = "4")]
IEnumerator<T> IEnumerable<T>.GetEnumerator()
{
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: 0x06001629 RID: 5673 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001629")]
[Address(RVA = "0x2CBA790", Offset = "0x2CB9590", VA = "0x182CBA790", Slot = "5")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
/// <summary>Removes and returns the object at the beginning of the <see cref="T:System.Collections.Generic.Queue`1" />.</summary>
/// <returns>The object that is removed from the beginning of the <see cref="T:System.Collections.Generic.Queue`1" />.</returns>
/// <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Queue`1" /> is empty.</exception>
// Token: 0x0600162A RID: 5674 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600162A")]
[Address(RVA = "0x3132510", Offset = "0x3131310", VA = "0x183132510")]
public T Dequeue()
{
return null;
}
/// <summary>Returns the object at the beginning of the <see cref="T:System.Collections.Generic.Queue`1" /> without removing it.</summary>
/// <returns>The object at the beginning of the <see cref="T:System.Collections.Generic.Queue`1" />.</returns>
/// <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Queue`1" /> is empty.</exception>
// Token: 0x0600162B RID: 5675 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600162B")]
[Address(RVA = "0x2CBA480", Offset = "0x2CB9280", VA = "0x182CBA480")]
public T Peek()
{
return null;
}
/// <summary>Determines whether an element is in the <see cref="T:System.Collections.Generic.Queue`1" />.</summary>
/// <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.Queue`1" />. The value can be <see langword="null" /> for reference types.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.Queue`1" />; otherwise, <see langword="false" />.</returns>
// Token: 0x0600162C RID: 5676 RVA: 0x00009C00 File Offset: 0x00007E00
[Token(Token = "0x600162C")]
[Address(RVA = "0x2CB96E0", Offset = "0x2CB84E0", VA = "0x182CB96E0")]
public bool Contains(T item)
{
return default(bool);
}
/// <summary>Copies the <see cref="T:System.Collections.Generic.Queue`1" /> elements to a new array.</summary>
/// <returns>A new array containing elements copied from the <see cref="T:System.Collections.Generic.Queue`1" />.</returns>
// Token: 0x0600162D RID: 5677 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600162D")]
[Address(RVA = "0x2CBC270", Offset = "0x2CBB070", VA = "0x182CBC270")]
public T[] ToArray()
{
return null;
}
// Token: 0x0600162E RID: 5678 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600162E")]
[Address(RVA = "0x2CBA6B0", Offset = "0x2CB94B0", VA = "0x182CBA6B0")]
private void SetCapacity(int capacity)
{
}
// Token: 0x0600162F RID: 5679 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600162F")]
[Address(RVA = "0x2CBA450", Offset = "0x2CB9250", VA = "0x182CBA450")]
private void MoveNext(ref int index)
{
}
// Token: 0x06001630 RID: 5680 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001630")]
[Address(RVA = "0x2CBC090", Offset = "0x2CBAE90", VA = "0x182CBC090")]
private void ThrowForEmptyQueue()
{
}
/// <summary>Sets the capacity to the actual number of elements in the <see cref="T:System.Collections.Generic.Queue`1" />, if that number is less than 90 percent of current capacity.</summary>
// Token: 0x06001631 RID: 5681 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001631")]
[Address(RVA = "0x2CBC360", Offset = "0x2CBB160", VA = "0x182CBC360")]
public void TrimExcess()
{
}
// Token: 0x04000E57 RID: 3671
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E57")]
private T[] _array;
// Token: 0x04000E58 RID: 3672
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E58")]
private int _head;
// Token: 0x04000E59 RID: 3673
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E59")]
private int _tail;
// Token: 0x04000E5A RID: 3674
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E5A")]
private int _size;
// Token: 0x04000E5B RID: 3675
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E5B")]
private int _version;
// Token: 0x04000E5C RID: 3676
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E5C")]
[NonSerialized]
private object _syncRoot;
// Token: 0x04000E5D RID: 3677
[Token(Token = "0x4000E5D")]
private const int MinimumGrow = 4;
// Token: 0x04000E5E RID: 3678
[Token(Token = "0x4000E5E")]
private const int GrowFactor = 200;
/// <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.Queue`1" />.</summary>
/// <typeparam name="T" />
// Token: 0x0200034C RID: 844
[Token(Token = "0x200034C")]
[Serializable]
public struct Enumerator : IEnumerator<T>, IDisposable, IEnumerator
{
// Token: 0x06001632 RID: 5682 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001632")]
[Address(RVA = "0x2CB4110", Offset = "0x2CB2F10", VA = "0x182CB4110")]
internal Enumerator(Queue<T> q)
{
}
/// <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.Queue`1.Enumerator" />.</summary>
// Token: 0x06001633 RID: 5683 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001633")]
[Address(RVA = "0x2CB1B80", Offset = "0x2CB0980", VA = "0x182CB1B80", Slot = "5")]
public void Dispose()
{
}
/// <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.Queue`1" />.</summary>
/// <returns>
/// <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
// Token: 0x06001634 RID: 5684 RVA: 0x00009C18 File Offset: 0x00007E18
[Token(Token = "0x6001634")]
[Address(RVA = "0x2CB1CE0", Offset = "0x2CB0AE0", VA = "0x182CB1CE0", Slot = "6")]
public bool MoveNext()
{
return default(bool);
}
/// <summary>Gets the element at the current position of the enumerator.</summary>
/// <returns>The element in the <see cref="T:System.Collections.Generic.Queue`1" /> at the current position of the enumerator.</returns>
/// <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
// Token: 0x1700049B RID: 1179
// (get) Token: 0x06001635 RID: 5685 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700049B")]
public T Current
{
[Token(Token = "0x6001635")]
[Address(RVA = "0x2CB4440", Offset = "0x2CB3240", VA = "0x182CB4440", Slot = "4")]
get
{
return null;
}
}
// Token: 0x06001636 RID: 5686 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001636")]
[Address(RVA = "0x2CB3FC0", Offset = "0x2CB2DC0", VA = "0x182CB3FC0")]
private void ThrowEnumerationNotStartedOrEnded()
{
}
/// <summary>Gets the element at the current position of the enumerator.</summary>
/// <returns>The element in the collection at the current position of the enumerator.</returns>
/// <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
// Token: 0x1700049C RID: 1180
// (get) Token: 0x06001637 RID: 5687 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700049C")]
object IEnumerator.Current
{
[Token(Token = "0x6001637")]
[Address(RVA = "0x2CB3210", Offset = "0x2CB2010", VA = "0x182CB3210", Slot = "7")]
get
{
return null;
}
}
/// <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
// Token: 0x06001638 RID: 5688 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001638")]
[Address(RVA = "0x2CB2D00", Offset = "0x2CB1B00", VA = "0x182CB2D00", Slot = "8")]
void IEnumerator.Reset()
{
}
// Token: 0x04000E5F RID: 3679
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E5F")]
private readonly Queue<T> _q;
// Token: 0x04000E60 RID: 3680
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E60")]
private readonly int _version;
// Token: 0x04000E61 RID: 3681
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E61")]
private int _index;
// Token: 0x04000E62 RID: 3682
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E62")]
private T _currentElement;
}
}
}
@@ -0,0 +1,11 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
// Token: 0x0200034D RID: 845
[Token(Token = "0x200034D")]
internal sealed class QueueDebugView<T>
{
}
}
@@ -0,0 +1,1208 @@
using System;
using System.Diagnostics;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
/// <summary>Represents a collection of key/value pairs that are sorted on the key.</summary>
/// <typeparam name="TKey">The type of the keys in the dictionary.</typeparam>
/// <typeparam name="TValue">The type of the values in the dictionary.</typeparam>
// Token: 0x0200034E RID: 846
[Token(Token = "0x200034E")]
[DebuggerTypeProxy(typeof(IDictionaryDebugView<, >))]
[DebuggerDisplay("Count = {Count}")]
[Serializable]
public class SortedDictionary<TKey, TValue> : IDictionary<TKey, TValue>, ICollection<KeyValuePair<TKey, TValue>>, IEnumerable<KeyValuePair<TKey, TValue>>, IEnumerable, IDictionary, ICollection, IReadOnlyDictionary<TKey, TValue>, IReadOnlyCollection<KeyValuePair<TKey, TValue>>
{
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> class that is empty and uses the default <see cref="T:System.Collections.Generic.IComparer`1" /> implementation for the key type.</summary>
// Token: 0x06001639 RID: 5689 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001639")]
[Address(RVA = "0x21BEAC0", Offset = "0x21BD8C0", VA = "0x1821BEAC0")]
public SortedDictionary()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> class that is empty and uses the specified <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to compare keys.</summary>
/// <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing keys, or <see langword="null" /> to use the default <see cref="T:System.Collections.Generic.Comparer`1" /> for the type of the key.</param>
// Token: 0x0600163A RID: 5690 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600163A")]
[Address(RVA = "0x3136EB0", Offset = "0x3135CB0", VA = "0x183136EB0")]
public SortedDictionary(IComparer<TKey> comparer)
{
}
// Token: 0x0600163B RID: 5691 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600163B")]
[Address(RVA = "0x3135840", Offset = "0x3134640", VA = "0x183135840", Slot = "14")]
void ICollection<KeyValuePair<TKey, TValue>>.Add(KeyValuePair<TKey, TValue> keyValuePair)
{
}
// Token: 0x0600163C RID: 5692 RVA: 0x00009C30 File Offset: 0x00007E30
[Token(Token = "0x600163C")]
[Address(RVA = "0x3135880", Offset = "0x3134680", VA = "0x183135880", Slot = "16")]
bool ICollection<KeyValuePair<TKey, TValue>>.Contains(KeyValuePair<TKey, TValue> keyValuePair)
{
return default(bool);
}
// Token: 0x0600163D RID: 5693 RVA: 0x00009C48 File Offset: 0x00007E48
[Token(Token = "0x600163D")]
[Address(RVA = "0x3135980", Offset = "0x3134780", VA = "0x183135980", Slot = "18")]
bool ICollection<KeyValuePair<TKey, TValue>>.Remove(KeyValuePair<TKey, TValue> keyValuePair)
{
return default(bool);
}
// Token: 0x1700049D RID: 1181
// (get) Token: 0x0600163E RID: 5694 RVA: 0x00009C60 File Offset: 0x00007E60
[Token(Token = "0x1700049D")]
bool ICollection<KeyValuePair<TKey, TValue>>.IsReadOnly
{
[Token(Token = "0x600163E")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "13")]
get
{
return default(bool);
}
}
/// <summary>Gets or sets the value associated with the specified key.</summary>
/// <param name="key">The key of the value to get or set.</param>
/// <returns>The value associated with the specified key. If the specified key is not found, a get operation throws a <see cref="T:System.Collections.Generic.KeyNotFoundException" />, and a set operation creates a new element with the specified key.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.Collections.Generic.KeyNotFoundException">The property is retrieved and <paramref name="key" /> does not exist in the collection.</exception>
// Token: 0x1700049E RID: 1182
[Token(Token = "0x1700049E")]
public TValue this[TKey key]
{
[Token(Token = "0x600163F")]
[Address(RVA = "0x3137110", Offset = "0x3135F10", VA = "0x183137110", Slot = "38")]
get
{
return null;
}
[Token(Token = "0x6001640")]
[Address(RVA = "0x3137310", Offset = "0x3136110", VA = "0x183137310", Slot = "5")]
set
{
}
}
/// <summary>Gets the number of key/value pairs contained in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
/// <returns>The number of key/value pairs contained in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</returns>
// Token: 0x1700049F RID: 1183
// (get) Token: 0x06001641 RID: 5697 RVA: 0x00009C78 File Offset: 0x00007E78
[Token(Token = "0x1700049F")]
public int Count
{
[Token(Token = "0x6001641")]
[Address(RVA = "0x3136FA0", Offset = "0x3135DA0", VA = "0x183136FA0", Slot = "41")]
get
{
return 0;
}
}
/// <summary>Gets a collection containing the keys in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
/// <returns>A <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> containing the keys in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</returns>
// Token: 0x170004A0 RID: 1184
// (get) Token: 0x06001642 RID: 5698 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004A0")]
public SortedDictionary<TKey, TValue>.KeyCollection Keys
{
[Token(Token = "0x6001642")]
[Address(RVA = "0x3137210", Offset = "0x3136010", VA = "0x183137210")]
get
{
return null;
}
}
// Token: 0x170004A1 RID: 1185
// (get) Token: 0x06001643 RID: 5699 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004A1")]
ICollection<TKey> IDictionary<TKey, TValue>.Keys
{
[Token(Token = "0x6001643")]
[Address(RVA = "0x3135A90", Offset = "0x3134890", VA = "0x183135A90", Slot = "6")]
get
{
return null;
}
}
// Token: 0x170004A2 RID: 1186
// (get) Token: 0x06001644 RID: 5700 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004A2")]
IEnumerable<TKey> IReadOnlyDictionary<TKey, TValue>.Keys
{
[Token(Token = "0x6001644")]
[Address(RVA = "0x3135A90", Offset = "0x3134890", VA = "0x183135A90", Slot = "39")]
get
{
return null;
}
}
/// <summary>Gets a collection containing the values in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
/// <returns>A <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> containing the values in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</returns>
// Token: 0x170004A3 RID: 1187
// (get) Token: 0x06001645 RID: 5701 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004A3")]
public SortedDictionary<TKey, TValue>.ValueCollection Values
{
[Token(Token = "0x6001645")]
[Address(RVA = "0x3137290", Offset = "0x3136090", VA = "0x183137290")]
get
{
return null;
}
}
// Token: 0x170004A4 RID: 1188
// (get) Token: 0x06001646 RID: 5702 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004A4")]
ICollection<TValue> IDictionary<TKey, TValue>.Values
{
[Token(Token = "0x6001646")]
[Address(RVA = "0x3135AC0", Offset = "0x31348C0", VA = "0x183135AC0", Slot = "7")]
get
{
return null;
}
}
// Token: 0x170004A5 RID: 1189
// (get) Token: 0x06001647 RID: 5703 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004A5")]
IEnumerable<TValue> IReadOnlyDictionary<TKey, TValue>.Values
{
[Token(Token = "0x6001647")]
[Address(RVA = "0x3135AC0", Offset = "0x31348C0", VA = "0x183135AC0", Slot = "40")]
get
{
return null;
}
}
/// <summary>Adds an element with the specified key and value into the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
/// <param name="key">The key of the element to add.</param>
/// <param name="value">The value of the element to add. The value can be <see langword="null" /> for reference types.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentException">An element with the same key already exists in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</exception>
// Token: 0x06001648 RID: 5704 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001648")]
[Address(RVA = "0x3134F50", Offset = "0x3133D50", VA = "0x183134F50", Slot = "9")]
public void Add(TKey key, TValue value)
{
}
/// <summary>Removes all elements from the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
// Token: 0x06001649 RID: 5705 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001649")]
[Address(RVA = "0x3135100", Offset = "0x3133F00", VA = "0x183135100", Slot = "27")]
public void Clear()
{
}
/// <summary>Determines whether the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified key.</summary>
/// <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</param>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified key; otherwise, <see langword="false" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x0600164A RID: 5706 RVA: 0x00009C90 File Offset: 0x00007E90
[Token(Token = "0x600164A")]
[Address(RVA = "0x3135210", Offset = "0x3134010", VA = "0x183135210", Slot = "36")]
public bool ContainsKey(TKey key)
{
return default(bool);
}
/// <summary>Determines whether the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified value.</summary>
/// <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />. The value can be <see langword="null" /> for reference types.</param>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified value; otherwise, <see langword="false" />.</returns>
// Token: 0x0600164B RID: 5707 RVA: 0x00009CA8 File Offset: 0x00007EA8
[Token(Token = "0x600164B")]
[Address(RVA = "0x31352C0", Offset = "0x31340C0", VA = "0x1831352C0")]
public bool ContainsValue(TValue value)
{
return default(bool);
}
/// <summary>Copies the elements of the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> to the specified array of <see cref="T:System.Collections.Generic.KeyValuePair`2" /> structures, starting at the specified index.</summary>
/// <param name="array">The one-dimensional array of <see cref="T:System.Collections.Generic.KeyValuePair`2" /> structures that is the destination of the elements copied from the current <see cref="T:System.Collections.Generic.SortedDictionary`2" /> The array must have zero-based indexing.</param>
/// <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than 0.</exception>
/// <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.SortedDictionary`2" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
// Token: 0x0600164C RID: 5708 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600164C")]
[Address(RVA = "0x31354B0", Offset = "0x31342B0", VA = "0x1831354B0", Slot = "17")]
public void CopyTo(KeyValuePair<TKey, TValue>[] array, int index)
{
}
/// <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
/// <returns>A <see cref="T:System.Collections.Generic.SortedDictionary`2.Enumerator" /> for the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</returns>
// Token: 0x0600164D RID: 5709 RVA: 0x00009CC0 File Offset: 0x00007EC0
[Token(Token = "0x600164D")]
[Address(RVA = "0x31354E0", Offset = "0x31342E0", VA = "0x1831354E0")]
public SortedDictionary<TKey, TValue>.Enumerator GetEnumerator()
{
return default(SortedDictionary<TKey, TValue>.Enumerator);
}
// Token: 0x0600164E RID: 5710 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600164E")]
[Address(RVA = "0x3135AF0", Offset = "0x31348F0", VA = "0x183135AF0", Slot = "19")]
IEnumerator<KeyValuePair<TKey, TValue>> IEnumerable<KeyValuePair<TKey, TValue>>.GetEnumerator()
{
return null;
}
/// <summary>Removes the element with the specified key from the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
/// <param name="key">The key of the element to remove.</param>
/// <returns>
/// <see langword="true" /> if the element is successfully removed; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="key" /> is not found in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x0600164F RID: 5711 RVA: 0x00009CD8 File Offset: 0x00007ED8
[Token(Token = "0x600164F")]
[Address(RVA = "0x31356B0", Offset = "0x31344B0", VA = "0x1831356B0", Slot = "10")]
public bool Remove(TKey key)
{
return default(bool);
}
/// <summary>Gets the value associated with the specified key.</summary>
/// <param name="key">The key of the value to get.</param>
/// <param name="value">When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the <paramref name="value" /> parameter.</param>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified key; otherwise, <see langword="false" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x06001650 RID: 5712 RVA: 0x00009CF0 File Offset: 0x00007EF0
[Token(Token = "0x6001650")]
[Address(RVA = "0x3136DC0", Offset = "0x3135BC0", VA = "0x183136DC0", Slot = "37")]
public bool TryGetValue(TKey key, out TValue value)
{
return default(bool);
}
/// <summary>Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1" /> to an array, starting at the specified array index.</summary>
/// <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.ICollection`1" />. The array must have zero-based indexing.</param>
/// <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than 0.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="array" /> is multidimensional.
/// -or-
/// <paramref name="array" /> does not have zero-based indexing.
/// -or-
/// The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.
/// -or-
/// The type of the source <see cref="T:System.Collections.Generic.ICollection`1" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
// Token: 0x06001651 RID: 5713 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001651")]
[Address(RVA = "0x3135C10", Offset = "0x3134A10", VA = "0x183135C10", Slot = "32")]
void ICollection.CopyTo(Array array, int index)
{
}
/// <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" />. In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2" />, this property always returns <see langword="false" />.</returns>
// Token: 0x170004A6 RID: 1190
// (get) Token: 0x06001652 RID: 5714 RVA: 0x00009D08 File Offset: 0x00007F08
[Token(Token = "0x170004A6")]
bool IDictionary.IsFixedSize
{
[Token(Token = "0x6001652")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "29")]
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" />. In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2" />, this property always returns <see langword="false" />.</returns>
// Token: 0x170004A7 RID: 1191
// (get) Token: 0x06001653 RID: 5715 RVA: 0x00009D20 File Offset: 0x00007F20
[Token(Token = "0x170004A7")]
bool IDictionary.IsReadOnly
{
[Token(Token = "0x6001653")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "28")]
get
{
return default(bool);
}
}
/// <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: 0x170004A8 RID: 1192
// (get) Token: 0x06001654 RID: 5716 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004A8")]
ICollection IDictionary.Keys
{
[Token(Token = "0x6001654")]
[Address(RVA = "0x3135A90", Offset = "0x3134890", VA = "0x183135A90", Slot = "23")]
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: 0x170004A9 RID: 1193
// (get) Token: 0x06001655 RID: 5717 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004A9")]
ICollection IDictionary.Values
{
[Token(Token = "0x6001655")]
[Address(RVA = "0x3135AC0", Offset = "0x31348C0", VA = "0x183135AC0", Slot = "24")]
get
{
return null;
}
}
/// <summary>Gets or sets the element with the specified key.</summary>
/// <param name="key">The key of the element to get.</param>
/// <returns>The element with the specified key, or <see langword="null" /> if <paramref name="key" /> is not in the dictionary or <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentException">A value is being assigned, and <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.
/// -or-
/// A value is being assigned, and <paramref name="value" /> is of a type that is not assignable to the value type <paramref name="TValue" /> of the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</exception>
// Token: 0x170004AA RID: 1194
[Token(Token = "0x170004AA")]
object IDictionary.this[object key]
{
[Token(Token = "0x6001656")]
[Address(RVA = "0x31365E0", Offset = "0x31353E0", VA = "0x1831365E0", Slot = "21")]
get
{
return null;
}
[Token(Token = "0x6001657")]
[Address(RVA = "0x31367A0", Offset = "0x31355A0", VA = "0x1831367A0", Slot = "22")]
set
{
}
}
/// <summary>Adds an element with the provided key and value to the <see cref="T:System.Collections.IDictionary" />.</summary>
/// <param name="key">The object to use as the key of the element to add.</param>
/// <param name="value">The object to use as the value of the element to add.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.IDictionary" />.
/// -or-
/// <paramref name="value" /> is of a type that is not assignable to the value type <paramref name="TValue" /> of the <see cref="T:System.Collections.IDictionary" />.
/// -or-
/// An element with the same key already exists in the <see cref="T:System.Collections.IDictionary" />.</exception>
// Token: 0x06001658 RID: 5720 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001658")]
[Address(RVA = "0x3135FA0", Offset = "0x3134DA0", VA = "0x183135FA0", Slot = "26")]
void IDictionary.Add(object key, object value)
{
}
/// <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>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x06001659 RID: 5721 RVA: 0x00009D38 File Offset: 0x00007F38
[Token(Token = "0x6001659")]
[Address(RVA = "0x3136210", Offset = "0x3135010", VA = "0x183136210", Slot = "25")]
bool IDictionary.Contains(object key)
{
return default(bool);
}
// Token: 0x0600165A RID: 5722 RVA: 0x00009D50 File Offset: 0x00007F50
[Token(Token = "0x600165A")]
[Address(RVA = "0x3135550", Offset = "0x3134350", VA = "0x183135550")]
private static bool IsCompatibleKey(object key)
{
return default(bool);
}
/// <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> for the <see cref="T:System.Collections.IDictionary" />.</summary>
/// <returns>An <see cref="T:System.Collections.IDictionaryEnumerator" /> for the <see cref="T:System.Collections.IDictionary" />.</returns>
// Token: 0x0600165B RID: 5723 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600165B")]
[Address(RVA = "0x31363B0", Offset = "0x31351B0", VA = "0x1831363B0", Slot = "30")]
IDictionaryEnumerator IDictionary.GetEnumerator()
{
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>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x0600165C RID: 5724 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600165C")]
[Address(RVA = "0x3136520", Offset = "0x3135320", VA = "0x183136520", Slot = "31")]
void IDictionary.Remove(object key)
{
}
/// <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
/// <returns>
/// <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />. In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2" />, this property always returns <see langword="false" />.</returns>
// Token: 0x170004AB RID: 1195
// (get) Token: 0x0600165D RID: 5725 RVA: 0x00009D68 File Offset: 0x00007F68
[Token(Token = "0x170004AB")]
bool ICollection.IsSynchronized
{
[Token(Token = "0x600165D")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "35")]
get
{
return default(bool);
}
}
/// <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
/// <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</returns>
// Token: 0x170004AC RID: 1196
// (get) Token: 0x0600165E RID: 5726 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004AC")]
object ICollection.SyncRoot
{
[Token(Token = "0x600165E")]
[Address(RVA = "0x3135CD0", Offset = "0x3134AD0", VA = "0x183135CD0", Slot = "34")]
get
{
return null;
}
}
/// <summary>Returns an enumerator that iterates through the collection.</summary>
/// <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
// Token: 0x0600165F RID: 5727 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600165F")]
[Address(RVA = "0x3135AF0", Offset = "0x31348F0", VA = "0x183135AF0", Slot = "20")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
// Token: 0x04000E63 RID: 3683
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E63")]
[NonSerialized]
private SortedDictionary<TKey, TValue>.KeyCollection _keys;
// Token: 0x04000E64 RID: 3684
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E64")]
[NonSerialized]
private SortedDictionary<TKey, TValue>.ValueCollection _values;
// Token: 0x04000E65 RID: 3685
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E65")]
private TreeSet<KeyValuePair<TKey, TValue>> _set;
/// <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
/// <typeparam name="TKey" />
/// <typeparam name="TValue" />
// Token: 0x0200034F RID: 847
[Token(Token = "0x200034F")]
public struct Enumerator : IEnumerator<KeyValuePair<TKey, TValue>>, IDisposable, IEnumerator, IDictionaryEnumerator
{
// Token: 0x06001660 RID: 5728 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001660")]
[Address(RVA = "0x312FD40", Offset = "0x312EB40", VA = "0x18312FD40")]
internal Enumerator(SortedDictionary<TKey, TValue> dictionary, int getEnumeratorRetType)
{
}
/// <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
/// <returns>
/// <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
// Token: 0x06001661 RID: 5729 RVA: 0x00009D80 File Offset: 0x00007F80
[Token(Token = "0x6001661")]
[Address(RVA = "0x312D880", Offset = "0x312C680", VA = "0x18312D880", Slot = "6")]
public bool MoveNext()
{
return default(bool);
}
/// <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.SortedDictionary`2.Enumerator" />.</summary>
// Token: 0x06001662 RID: 5730 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001662")]
[Address(RVA = "0x312D5D0", Offset = "0x312C3D0", VA = "0x18312D5D0", Slot = "5")]
public void Dispose()
{
}
/// <summary>Gets the element at the current position of the enumerator.</summary>
/// <returns>The element in the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> at the current position of the enumerator.</returns>
// Token: 0x170004AD RID: 1197
// (get) Token: 0x06001663 RID: 5731 RVA: 0x00009D98 File Offset: 0x00007F98
[Token(Token = "0x170004AD")]
public KeyValuePair<TKey, TValue> Current
{
[Token(Token = "0x6001663")]
[Address(RVA = "0x312FE50", Offset = "0x312EC50", VA = "0x18312FE50", Slot = "4")]
get
{
return default(KeyValuePair<TKey, TValue>);
}
}
// Token: 0x170004AE RID: 1198
// (get) Token: 0x06001664 RID: 5732 RVA: 0x00009DB0 File Offset: 0x00007FB0
[Token(Token = "0x170004AE")]
internal bool NotStartedOrEnded
{
[Token(Token = "0x6001664")]
[Address(RVA = "0x31301A0", Offset = "0x312EFA0", VA = "0x1831301A0")]
get
{
return default(bool);
}
}
// Token: 0x06001665 RID: 5733 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001665")]
[Address(RVA = "0x312DB70", Offset = "0x312C970", VA = "0x18312DB70")]
internal void Reset()
{
}
/// <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
// Token: 0x06001666 RID: 5734 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001666")]
[Address(RVA = "0x312DB70", Offset = "0x312C970", VA = "0x18312DB70", Slot = "8")]
void IEnumerator.Reset()
{
}
/// <summary>Gets the element at the current position of the enumerator.</summary>
/// <returns>The element in the collection at the current position of the enumerator.</returns>
/// <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
// Token: 0x170004AF RID: 1199
// (get) Token: 0x06001667 RID: 5735 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004AF")]
object IEnumerator.Current
{
[Token(Token = "0x6001667")]
[Address(RVA = "0x312EF60", Offset = "0x312DD60", VA = "0x18312EF60", Slot = "7")]
get
{
return null;
}
}
/// <summary>Gets the key of the element at the current position of the enumerator.</summary>
/// <returns>The key of the element in the collection at the current position of the enumerator.</returns>
/// <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
// Token: 0x170004B0 RID: 1200
// (get) Token: 0x06001668 RID: 5736 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004B0")]
object IDictionaryEnumerator.Key
{
[Token(Token = "0x6001668")]
[Address(RVA = "0x312E380", Offset = "0x312D180", VA = "0x18312E380", Slot = "9")]
get
{
return null;
}
}
/// <summary>Gets the value of the element at the current position of the enumerator.</summary>
/// <returns>The value of the element in the collection at the current position of the enumerator.</returns>
/// <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
// Token: 0x170004B1 RID: 1201
// (get) Token: 0x06001669 RID: 5737 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004B1")]
object IDictionaryEnumerator.Value
{
[Token(Token = "0x6001669")]
[Address(RVA = "0x312E740", Offset = "0x312D540", VA = "0x18312E740", Slot = "10")]
get
{
return null;
}
}
/// <summary>Gets the element at the current position of the enumerator as a <see cref="T:System.Collections.DictionaryEntry" /> structure.</summary>
/// <returns>The element in the collection at the current position of the dictionary, as a <see cref="T:System.Collections.DictionaryEntry" /> structure.</returns>
/// <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
// Token: 0x170004B2 RID: 1202
// (get) Token: 0x0600166A RID: 5738 RVA: 0x00009DC8 File Offset: 0x00007FC8
[Token(Token = "0x170004B2")]
DictionaryEntry IDictionaryEnumerator.Entry
{
[Token(Token = "0x600166A")]
[Address(RVA = "0x312E040", Offset = "0x312CE40", VA = "0x18312E040", Slot = "11")]
get
{
return default(DictionaryEntry);
}
}
// Token: 0x04000E66 RID: 3686
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E66")]
private SortedSet<KeyValuePair<TKey, TValue>>.Enumerator _treeEnum;
// Token: 0x04000E67 RID: 3687
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E67")]
private int _getEnumeratorRetType;
}
/// <summary>Represents the collection of keys in a <see cref="T:System.Collections.Generic.SortedDictionary`2" />. This class cannot be inherited.</summary>
/// <typeparam name="TKey" />
/// <typeparam name="TValue" />
// Token: 0x02000350 RID: 848
[Token(Token = "0x2000350")]
[DebuggerDisplay("Count = {Count}")]
[DebuggerTypeProxy(typeof(DictionaryKeyCollectionDebugView<, >))]
[Serializable]
public sealed class KeyCollection : ICollection<TKey>, IEnumerable<TKey>, IEnumerable, ICollection, IReadOnlyCollection<TKey>
{
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> class that reflects the keys in the specified <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
/// <param name="dictionary">The <see cref="T:System.Collections.Generic.SortedDictionary`2" /> whose keys are reflected in the new <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="dictionary" /> is <see langword="null" />.</exception>
// Token: 0x0600166B RID: 5739 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600166B")]
[Address(RVA = "0x3131230", Offset = "0x3130030", VA = "0x183131230")]
public KeyCollection(SortedDictionary<TKey, TValue> dictionary)
{
}
// Token: 0x0600166C RID: 5740 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600166C")]
[Address(RVA = "0x3130880", Offset = "0x312F680", VA = "0x183130880", Slot = "11")]
IEnumerator<TKey> IEnumerable<TKey>.GetEnumerator()
{
return null;
}
/// <summary>Returns an enumerator that iterates through the collection.</summary>
/// <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
// Token: 0x0600166D RID: 5741 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600166D")]
[Address(RVA = "0x3130880", Offset = "0x312F680", VA = "0x183130880", Slot = "12")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
/// <summary>Copies the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> elements to an existing one-dimensional array, starting at the specified array index.</summary>
/// <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />. The array must have zero-based indexing.</param>
/// <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than 0.</exception>
/// <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
// Token: 0x0600166E RID: 5742 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600166E")]
[Address(RVA = "0x3130410", Offset = "0x312F210", VA = "0x183130410", Slot = "9")]
public void CopyTo(TKey[] array, int index)
{
}
/// <summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an array, starting at a particular array index.</summary>
/// <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.ICollection" />. The array must have zero-based indexing.</param>
/// <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than 0.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="array" /> is multidimensional.
/// -or-
/// <paramref name="array" /> does not have zero-based indexing.
/// -or-
/// The number of elements in the source <see cref="T:System.Collections.ICollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.
/// -or-
/// The type of the source <see cref="T:System.Collections.ICollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
// Token: 0x0600166F RID: 5743 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600166F")]
[Address(RVA = "0x3130D10", Offset = "0x312FB10", VA = "0x183130D10", Slot = "13")]
void ICollection.CopyTo(Array array, int index)
{
}
/// <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />.</summary>
/// <returns>The number of elements contained in the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />.</returns>
// Token: 0x170004B3 RID: 1203
// (get) Token: 0x06001670 RID: 5744 RVA: 0x00009DE0 File Offset: 0x00007FE0
[Token(Token = "0x170004B3")]
public int Count
{
[Token(Token = "0x6001670")]
[Address(RVA = "0x31312C0", Offset = "0x31300C0", VA = "0x1831312C0", Slot = "17")]
get
{
return 0;
}
}
// Token: 0x170004B4 RID: 1204
// (get) Token: 0x06001671 RID: 5745 RVA: 0x00009DF8 File Offset: 0x00007FF8
[Token(Token = "0x170004B4")]
bool ICollection<TKey>.IsReadOnly
{
[Token(Token = "0x6001671")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "5")]
get
{
return default(bool);
}
}
// Token: 0x06001672 RID: 5746 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001672")]
[Address(RVA = "0x31306A0", Offset = "0x312F4A0", VA = "0x1831306A0", Slot = "6")]
void ICollection<TKey>.Add(TKey item)
{
}
// Token: 0x06001673 RID: 5747 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001673")]
[Address(RVA = "0x3130760", Offset = "0x312F560", VA = "0x183130760", Slot = "7")]
void ICollection<TKey>.Clear()
{
}
// Token: 0x06001674 RID: 5748 RVA: 0x00009E10 File Offset: 0x00008010
[Token(Token = "0x6001674")]
[Address(RVA = "0x1F0A7E0", Offset = "0x1F095E0", VA = "0x181F0A7E0", Slot = "8")]
bool ICollection<TKey>.Contains(TKey item)
{
return default(bool);
}
// Token: 0x06001675 RID: 5749 RVA: 0x00009E28 File Offset: 0x00008028
[Token(Token = "0x6001675")]
[Address(RVA = "0x31307C0", Offset = "0x312F5C0", VA = "0x1831307C0", Slot = "10")]
bool ICollection<TKey>.Remove(TKey item)
{
return default(bool);
}
/// <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
/// <returns>
/// <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />. In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />, this property always returns <see langword="false" />.</returns>
// Token: 0x170004B5 RID: 1205
// (get) Token: 0x06001676 RID: 5750 RVA: 0x00009E40 File Offset: 0x00008040
[Token(Token = "0x170004B5")]
bool ICollection.IsSynchronized
{
[Token(Token = "0x6001676")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "16")]
get
{
return default(bool);
}
}
/// <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
/// <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />, this property always returns the current instance.</returns>
// Token: 0x170004B6 RID: 1206
// (get) Token: 0x06001677 RID: 5751 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004B6")]
object ICollection.SyncRoot
{
[Token(Token = "0x6001677")]
[Address(RVA = "0x3131150", Offset = "0x312FF50", VA = "0x183131150", Slot = "15")]
get
{
return null;
}
}
// Token: 0x04000E68 RID: 3688
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E68")]
private SortedDictionary<TKey, TValue> _dictionary;
/// <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />.</summary>
/// <typeparam name="TKey" />
/// <typeparam name="TValue" />
// Token: 0x02000351 RID: 849
[Token(Token = "0x2000351")]
public struct Enumerator : IEnumerator<TKey>, IDisposable, IEnumerator
{
// Token: 0x06001678 RID: 5752 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001678")]
[Address(RVA = "0x312FC80", Offset = "0x312EA80", VA = "0x18312FC80")]
internal Enumerator(SortedDictionary<TKey, TValue> dictionary)
{
}
/// <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator" />.</summary>
// Token: 0x06001679 RID: 5753 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001679")]
[Address(RVA = "0x312D570", Offset = "0x312C370", VA = "0x18312D570", Slot = "5")]
public void Dispose()
{
}
/// <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />.</summary>
/// <returns>
/// <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
// Token: 0x0600167A RID: 5754 RVA: 0x00009E58 File Offset: 0x00008058
[Token(Token = "0x600167A")]
[Address(RVA = "0x312D820", Offset = "0x312C620", VA = "0x18312D820", Slot = "6")]
public bool MoveNext()
{
return default(bool);
}
/// <summary>Gets the element at the current position of the enumerator.</summary>
/// <returns>The element in the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> at the current position of the enumerator.</returns>
// Token: 0x170004B7 RID: 1207
// (get) Token: 0x0600167B RID: 5755 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004B7")]
public TKey Current
{
[Token(Token = "0x600167B")]
[Address(RVA = "0x3130070", Offset = "0x312EE70", VA = "0x183130070", Slot = "4")]
get
{
return null;
}
}
/// <summary>Gets the element at the current position of the enumerator.</summary>
/// <returns>The element in the collection at the current position of the enumerator.</returns>
/// <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
// Token: 0x170004B8 RID: 1208
// (get) Token: 0x0600167C RID: 5756 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004B8")]
object IEnumerator.Current
{
[Token(Token = "0x600167C")]
[Address(RVA = "0x312F580", Offset = "0x312E380", VA = "0x18312F580", Slot = "7")]
get
{
return null;
}
}
/// <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
// Token: 0x0600167D RID: 5757 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600167D")]
[Address(RVA = "0x312EBA0", Offset = "0x312D9A0", VA = "0x18312EBA0", Slot = "8")]
void IEnumerator.Reset()
{
}
// Token: 0x04000E69 RID: 3689
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E69")]
private SortedDictionary<TKey, TValue>.Enumerator _dictEnum;
}
}
/// <summary>Represents the collection of values in a <see cref="T:System.Collections.Generic.SortedDictionary`2" />. This class cannot be inherited</summary>
/// <typeparam name="TKey" />
/// <typeparam name="TValue" />
// Token: 0x02000355 RID: 853
[Token(Token = "0x2000355")]
[DebuggerDisplay("Count = {Count}")]
[DebuggerTypeProxy(typeof(DictionaryValueCollectionDebugView<, >))]
[Serializable]
public sealed class ValueCollection : ICollection<TValue>, IEnumerable<TValue>, IEnumerable, ICollection, IReadOnlyCollection<TValue>
{
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> class that reflects the values in the specified <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
/// <param name="dictionary">The <see cref="T:System.Collections.Generic.SortedDictionary`2" /> whose values are reflected in the new <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="dictionary" /> is <see langword="null" />.</exception>
// Token: 0x06001683 RID: 5763 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001683")]
[Address(RVA = "0x313D3F0", Offset = "0x313C1F0", VA = "0x18313D3F0")]
public ValueCollection(SortedDictionary<TKey, TValue> dictionary)
{
}
// Token: 0x06001684 RID: 5764 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001684")]
[Address(RVA = "0x3130880", Offset = "0x312F680", VA = "0x183130880", Slot = "11")]
IEnumerator<TValue> IEnumerable<TValue>.GetEnumerator()
{
return null;
}
/// <summary>Returns an enumerator that iterates through the collection.</summary>
/// <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
// Token: 0x06001685 RID: 5765 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001685")]
[Address(RVA = "0x3130880", Offset = "0x312F680", VA = "0x183130880", Slot = "12")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
/// <summary>Copies the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> elements to an existing one-dimensional array, starting at the specified array index.</summary>
/// <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />. The array must have zero-based indexing.</param>
/// <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than 0.</exception>
/// <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
// Token: 0x06001686 RID: 5766 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001686")]
[Address(RVA = "0x313C700", Offset = "0x313B500", VA = "0x18313C700", Slot = "9")]
public void CopyTo(TValue[] array, int index)
{
}
/// <summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an array, starting at a particular array index.</summary>
/// <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.ICollection" />. The array must have zero-based indexing.</param>
/// <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than 0.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="array" /> is multidimensional.
/// -or-
/// <paramref name="array" /> does not have zero-based indexing.
/// -or-
/// The number of elements in the source <see cref="T:System.Collections.ICollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.
/// -or-
/// The type of the source <see cref="T:System.Collections.ICollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
// Token: 0x06001687 RID: 5767 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001687")]
[Address(RVA = "0x313CF60", Offset = "0x313BD60", VA = "0x18313CF60", Slot = "13")]
void ICollection.CopyTo(Array array, int index)
{
}
/// <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />.</summary>
/// <returns>The number of elements contained in the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />.</returns>
// Token: 0x170004B9 RID: 1209
// (get) Token: 0x06001688 RID: 5768 RVA: 0x00009EA0 File Offset: 0x000080A0
[Token(Token = "0x170004B9")]
public int Count
{
[Token(Token = "0x6001688")]
[Address(RVA = "0x31312C0", Offset = "0x31300C0", VA = "0x1831312C0", Slot = "17")]
get
{
return 0;
}
}
// Token: 0x170004BA RID: 1210
// (get) Token: 0x06001689 RID: 5769 RVA: 0x00009EB8 File Offset: 0x000080B8
[Token(Token = "0x170004BA")]
bool ICollection<TValue>.IsReadOnly
{
[Token(Token = "0x6001689")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "5")]
get
{
return default(bool);
}
}
// Token: 0x0600168A RID: 5770 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600168A")]
[Address(RVA = "0x313C990", Offset = "0x313B790", VA = "0x18313C990", Slot = "6")]
void ICollection<TValue>.Add(TValue item)
{
}
// Token: 0x0600168B RID: 5771 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600168B")]
[Address(RVA = "0x313CA50", Offset = "0x313B850", VA = "0x18313CA50", Slot = "7")]
void ICollection<TValue>.Clear()
{
}
// Token: 0x0600168C RID: 5772 RVA: 0x00009ED0 File Offset: 0x000080D0
[Token(Token = "0x600168C")]
[Address(RVA = "0x1F0A7E0", Offset = "0x1F095E0", VA = "0x181F0A7E0", Slot = "8")]
bool ICollection<TValue>.Contains(TValue item)
{
return default(bool);
}
// Token: 0x0600168D RID: 5773 RVA: 0x00009EE8 File Offset: 0x000080E8
[Token(Token = "0x600168D")]
[Address(RVA = "0x313CB10", Offset = "0x313B910", VA = "0x18313CB10", Slot = "10")]
bool ICollection<TValue>.Remove(TValue item)
{
return default(bool);
}
/// <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
/// <returns>
/// <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />. In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />, this property always returns <see langword="false" />.</returns>
// Token: 0x170004BB RID: 1211
// (get) Token: 0x0600168E RID: 5774 RVA: 0x00009F00 File Offset: 0x00008100
[Token(Token = "0x170004BB")]
bool ICollection.IsSynchronized
{
[Token(Token = "0x600168E")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "16")]
get
{
return default(bool);
}
}
/// <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
/// <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />, this property always returns the current instance.</returns>
// Token: 0x170004BC RID: 1212
// (get) Token: 0x0600168F RID: 5775 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004BC")]
object ICollection.SyncRoot
{
[Token(Token = "0x600168F")]
[Address(RVA = "0x313D350", Offset = "0x313C150", VA = "0x18313D350", Slot = "15")]
get
{
return null;
}
}
// Token: 0x04000E6F RID: 3695
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E6F")]
private SortedDictionary<TKey, TValue> _dictionary;
/// <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />.</summary>
/// <typeparam name="TKey" />
/// <typeparam name="TValue" />
// Token: 0x02000356 RID: 854
[Token(Token = "0x2000356")]
public struct Enumerator : IEnumerator<TValue>, IDisposable, IEnumerator
{
// Token: 0x06001690 RID: 5776 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001690")]
[Address(RVA = "0x312FC80", Offset = "0x312EA80", VA = "0x18312FC80")]
internal Enumerator(SortedDictionary<TKey, TValue> dictionary)
{
}
/// <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator" />.</summary>
// Token: 0x06001691 RID: 5777 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001691")]
[Address(RVA = "0x312D570", Offset = "0x312C370", VA = "0x18312D570", Slot = "5")]
public void Dispose()
{
}
/// <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />.</summary>
/// <returns>
/// <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
// Token: 0x06001692 RID: 5778 RVA: 0x00009F18 File Offset: 0x00008118
[Token(Token = "0x6001692")]
[Address(RVA = "0x312D820", Offset = "0x312C620", VA = "0x18312D820", Slot = "6")]
public bool MoveNext()
{
return default(bool);
}
/// <summary>Gets the element at the current position of the enumerator.</summary>
/// <returns>The element in the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> at the current position of the enumerator.</returns>
// Token: 0x170004BD RID: 1213
// (get) Token: 0x06001693 RID: 5779 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004BD")]
public TValue Current
{
[Token(Token = "0x6001693")]
[Address(RVA = "0x312FF50", Offset = "0x312ED50", VA = "0x18312FF50", Slot = "4")]
get
{
return null;
}
}
/// <summary>Gets the element at the current position of the enumerator.</summary>
/// <returns>The element in the collection at the current position of the enumerator.</returns>
/// <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
// Token: 0x170004BE RID: 1214
// (get) Token: 0x06001694 RID: 5780 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004BE")]
object IEnumerator.Current
{
[Token(Token = "0x6001694")]
[Address(RVA = "0x312ED80", Offset = "0x312DB80", VA = "0x18312ED80", Slot = "7")]
get
{
return null;
}
}
/// <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
// Token: 0x06001695 RID: 5781 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001695")]
[Address(RVA = "0x312EBA0", Offset = "0x312D9A0", VA = "0x18312EBA0", Slot = "8")]
void IEnumerator.Reset()
{
}
// Token: 0x04000E70 RID: 3696
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E70")]
private SortedDictionary<TKey, TValue>.Enumerator _dictEnum;
}
}
// Token: 0x0200035A RID: 858
[Token(Token = "0x200035A")]
[Serializable]
internal sealed class KeyValuePairComparer : Comparer<KeyValuePair<TKey, TValue>>
{
// Token: 0x0600169B RID: 5787 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600169B")]
[Address(RVA = "0x3131F00", Offset = "0x3130D00", VA = "0x183131F00")]
public KeyValuePairComparer(IComparer<TKey> keyComparer)
{
}
// Token: 0x0600169C RID: 5788 RVA: 0x00009F60 File Offset: 0x00008160
[Token(Token = "0x600169C")]
[Address(RVA = "0x3131D60", Offset = "0x3130B60", VA = "0x183131D60", Slot = "6")]
public override int Compare(KeyValuePair<TKey, TValue> x, KeyValuePair<TKey, TValue> y)
{
return 0;
}
// Token: 0x04000E76 RID: 3702
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E76")]
internal IComparer<TKey> keyComparer;
}
}
}
+1287
View File
@@ -0,0 +1,1287 @@
using System;
using System.Diagnostics;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
/// <summary>Represents a collection of key/value pairs that are sorted by key based on the associated <see cref="T:System.Collections.Generic.IComparer`1" /> implementation.</summary>
/// <typeparam name="TKey">The type of keys in the collection.</typeparam>
/// <typeparam name="TValue">The type of values in the collection.</typeparam>
// Token: 0x0200035E RID: 862
[Token(Token = "0x200035E")]
[DebuggerTypeProxy(typeof(IDictionaryDebugView<, >))]
[DebuggerDisplay("Count = {Count}")]
[Serializable]
public class SortedList<TKey, TValue> : IDictionary<TKey, TValue>, ICollection<KeyValuePair<TKey, TValue>>, IEnumerable<KeyValuePair<TKey, TValue>>, IEnumerable, IDictionary, ICollection, IReadOnlyDictionary<TKey, TValue>, IReadOnlyCollection<KeyValuePair<TKey, TValue>>
{
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedList`2" /> class that is empty, has the default initial capacity, and uses the default <see cref="T:System.Collections.Generic.IComparer`1" />.</summary>
// Token: 0x060016A5 RID: 5797 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016A5")]
[Address(RVA = "0x313B830", Offset = "0x313A630", VA = "0x18313B830")]
public SortedList()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedList`2" /> class that is empty, has the default initial capacity, and uses the specified <see cref="T:System.Collections.Generic.IComparer`1" />.</summary>
/// <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing keys.
/// -or-
/// <see langword="null" /> to use the default <see cref="T:System.Collections.Generic.Comparer`1" /> for the type of the key.</param>
// Token: 0x060016A6 RID: 5798 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016A6")]
[Address(RVA = "0x313B8B0", Offset = "0x313A6B0", VA = "0x18313B8B0")]
public SortedList(IComparer<TKey> comparer)
{
}
/// <summary>Adds an element with the specified key and value into the <see cref="T:System.Collections.Generic.SortedList`2" />.</summary>
/// <param name="key">The key of the element to add.</param>
/// <param name="value">The value of the element to add. The value can be <see langword="null" /> for reference types.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentException">An element with the same key already exists in the <see cref="T:System.Collections.Generic.SortedList`2" />.</exception>
// Token: 0x060016A7 RID: 5799 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016A7")]
[Address(RVA = "0x3138130", Offset = "0x3136F30", VA = "0x183138130", Slot = "9")]
public void Add(TKey key, TValue value)
{
}
// Token: 0x060016A8 RID: 5800 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016A8")]
[Address(RVA = "0x1E1B320", Offset = "0x1E1A120", VA = "0x181E1B320", Slot = "14")]
void ICollection<KeyValuePair<TKey, TValue>>.Add(KeyValuePair<TKey, TValue> keyValuePair)
{
}
// Token: 0x060016A9 RID: 5801 RVA: 0x00009FC0 File Offset: 0x000081C0
[Token(Token = "0x60016A9")]
[Address(RVA = "0x3139360", Offset = "0x3138160", VA = "0x183139360", Slot = "16")]
bool ICollection<KeyValuePair<TKey, TValue>>.Contains(KeyValuePair<TKey, TValue> keyValuePair)
{
return default(bool);
}
// Token: 0x060016AA RID: 5802 RVA: 0x00009FD8 File Offset: 0x000081D8
[Token(Token = "0x60016AA")]
[Address(RVA = "0x31399C0", Offset = "0x31387C0", VA = "0x1831399C0", Slot = "18")]
bool ICollection<KeyValuePair<TKey, TValue>>.Remove(KeyValuePair<TKey, TValue> keyValuePair)
{
return default(bool);
}
/// <summary>Gets or sets the number of elements that the <see cref="T:System.Collections.Generic.SortedList`2" /> can contain.</summary>
/// <returns>The number of elements that the <see cref="T:System.Collections.Generic.SortedList`2" /> can contain.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <see cref="P:System.Collections.Generic.SortedList`2.Capacity" /> is set to a value that is less than <see cref="P:System.Collections.Generic.SortedList`2.Count" />.</exception>
/// <exception cref="T:System.OutOfMemoryException">There is not enough memory available on the system.</exception>
// Token: 0x170004BF RID: 1215
// (set) Token: 0x060016AB RID: 5803 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170004BF")]
public int Capacity
{
[Token(Token = "0x60016AB")]
[Address(RVA = "0x313BC30", Offset = "0x313AA30", VA = "0x18313BC30")]
set
{
}
}
/// <summary>Gets the <see cref="T:System.Collections.Generic.IComparer`1" /> for the sorted list.</summary>
/// <returns>The <see cref="T:System.IComparable`1" /> for the current <see cref="T:System.Collections.Generic.SortedList`2" />.</returns>
// Token: 0x170004C0 RID: 1216
// (get) Token: 0x060016AC RID: 5804 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004C0")]
public IComparer<TKey> Comparer
{
[Token(Token = "0x60016AC")]
[Address(RVA = "0x3F63E0", Offset = "0x3F51E0", VA = "0x1803F63E0")]
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.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.IDictionary" />.
/// -or-
/// <paramref name="value" /> is of a type that is not assignable to the value type <paramref name="TValue" /> of the <see cref="T:System.Collections.IDictionary" />.
/// -or-
/// An element with the same key already exists in the <see cref="T:System.Collections.IDictionary" />.</exception>
// Token: 0x060016AD RID: 5805 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016AD")]
[Address(RVA = "0x313A990", Offset = "0x3139790", VA = "0x18313A990", Slot = "26")]
void IDictionary.Add(object key, object value)
{
}
/// <summary>Gets the number of key/value pairs contained in the <see cref="T:System.Collections.Generic.SortedList`2" />.</summary>
/// <returns>The number of key/value pairs contained in the <see cref="T:System.Collections.Generic.SortedList`2" />.</returns>
// Token: 0x170004C1 RID: 1217
// (get) Token: 0x060016AE RID: 5806 RVA: 0x00009FF0 File Offset: 0x000081F0
[Token(Token = "0x170004C1")]
public int Count
{
[Token(Token = "0x60016AE")]
[Address(RVA = "0x3F7310", Offset = "0x3F6110", VA = "0x1803F7310", Slot = "41")]
get
{
return 0;
}
}
// Token: 0x170004C2 RID: 1218
// (get) Token: 0x060016AF RID: 5807 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004C2")]
ICollection<TKey> IDictionary<TKey, TValue>.Keys
{
[Token(Token = "0x60016AF")]
[Address(RVA = "0x28F4F20", Offset = "0x28F3D20", VA = "0x1828F4F20", Slot = "6")]
get
{
return null;
}
}
/// <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: 0x170004C3 RID: 1219
// (get) Token: 0x060016B0 RID: 5808 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004C3")]
ICollection IDictionary.Keys
{
[Token(Token = "0x60016B0")]
[Address(RVA = "0x28F4F20", Offset = "0x28F3D20", VA = "0x1828F4F20", Slot = "23")]
get
{
return null;
}
}
// Token: 0x170004C4 RID: 1220
// (get) Token: 0x060016B1 RID: 5809 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004C4")]
IEnumerable<TKey> IReadOnlyDictionary<TKey, TValue>.Keys
{
[Token(Token = "0x60016B1")]
[Address(RVA = "0x28F4F20", Offset = "0x28F3D20", VA = "0x1828F4F20", Slot = "39")]
get
{
return null;
}
}
/// <summary>Gets a collection containing the values in the <see cref="T:System.Collections.Generic.SortedList`2" />.</summary>
/// <returns>A <see cref="T:System.Collections.Generic.IList`1" /> containing the values in the <see cref="T:System.Collections.Generic.SortedList`2" />.</returns>
// Token: 0x170004C5 RID: 1221
// (get) Token: 0x060016B2 RID: 5810 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004C5")]
public IList<TValue> Values
{
[Token(Token = "0x60016B2")]
[Address(RVA = "0x1F90B80", Offset = "0x1F8F980", VA = "0x181F90B80")]
get
{
return null;
}
}
// Token: 0x170004C6 RID: 1222
// (get) Token: 0x060016B3 RID: 5811 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004C6")]
ICollection<TValue> IDictionary<TKey, TValue>.Values
{
[Token(Token = "0x60016B3")]
[Address(RVA = "0x1F90B80", Offset = "0x1F8F980", VA = "0x181F90B80", Slot = "7")]
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: 0x170004C7 RID: 1223
// (get) Token: 0x060016B4 RID: 5812 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004C7")]
ICollection IDictionary.Values
{
[Token(Token = "0x60016B4")]
[Address(RVA = "0x1F90B80", Offset = "0x1F8F980", VA = "0x181F90B80", Slot = "24")]
get
{
return null;
}
}
// Token: 0x170004C8 RID: 1224
// (get) Token: 0x060016B5 RID: 5813 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004C8")]
IEnumerable<TValue> IReadOnlyDictionary<TKey, TValue>.Values
{
[Token(Token = "0x60016B5")]
[Address(RVA = "0x1F90B80", Offset = "0x1F8F980", VA = "0x181F90B80", Slot = "40")]
get
{
return null;
}
}
// Token: 0x060016B6 RID: 5814 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60016B6")]
[Address(RVA = "0x31387A0", Offset = "0x31375A0", VA = "0x1831387A0")]
private SortedList<TKey, TValue>.KeyList GetKeyListHelper()
{
return null;
}
// Token: 0x060016B7 RID: 5815 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60016B7")]
[Address(RVA = "0x31389D0", Offset = "0x31377D0", VA = "0x1831389D0")]
private SortedList<TKey, TValue>.ValueList GetValueListHelper()
{
return null;
}
// Token: 0x170004C9 RID: 1225
// (get) Token: 0x060016B8 RID: 5816 RVA: 0x0000A008 File Offset: 0x00008208
[Token(Token = "0x170004C9")]
bool ICollection<KeyValuePair<TKey, TValue>>.IsReadOnly
{
[Token(Token = "0x60016B8")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "13")]
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" />. In the default implementation of <see cref="T:System.Collections.Generic.SortedList`2" />, this property always returns <see langword="false" />.</returns>
// Token: 0x170004CA RID: 1226
// (get) Token: 0x060016B9 RID: 5817 RVA: 0x0000A020 File Offset: 0x00008220
[Token(Token = "0x170004CA")]
bool IDictionary.IsReadOnly
{
[Token(Token = "0x60016B9")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "28")]
get
{
return default(bool);
}
}
/// <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" />. In the default implementation of <see cref="T:System.Collections.Generic.SortedList`2" />, this property always returns <see langword="false" />.</returns>
// Token: 0x170004CB RID: 1227
// (get) Token: 0x060016BA RID: 5818 RVA: 0x0000A038 File Offset: 0x00008238
[Token(Token = "0x170004CB")]
bool IDictionary.IsFixedSize
{
[Token(Token = "0x60016BA")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "29")]
get
{
return default(bool);
}
}
/// <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
/// <returns>
/// <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />. In the default implementation of <see cref="T:System.Collections.Generic.SortedList`2" />, this property always returns <see langword="false" />.</returns>
// Token: 0x170004CC RID: 1228
// (get) Token: 0x060016BB RID: 5819 RVA: 0x0000A050 File Offset: 0x00008250
[Token(Token = "0x170004CC")]
bool ICollection.IsSynchronized
{
[Token(Token = "0x60016BB")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "35")]
get
{
return default(bool);
}
}
/// <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
/// <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. In the default implementation of <see cref="T:System.Collections.Generic.SortedList`2" />, this property always returns the current instance.</returns>
// Token: 0x170004CD RID: 1229
// (get) Token: 0x060016BC RID: 5820 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004CD")]
object ICollection.SyncRoot
{
[Token(Token = "0x60016BC")]
[Address(RVA = "0x313A650", Offset = "0x3139450", VA = "0x18313A650", Slot = "34")]
get
{
return null;
}
}
/// <summary>Removes all elements from the <see cref="T:System.Collections.Generic.SortedList`2" />.</summary>
// Token: 0x060016BD RID: 5821 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016BD")]
[Address(RVA = "0x25485A0", Offset = "0x25473A0", VA = "0x1825485A0", Slot = "27")]
public void 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>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x060016BE RID: 5822 RVA: 0x0000A068 File Offset: 0x00008268
[Token(Token = "0x60016BE")]
[Address(RVA = "0x313AC50", Offset = "0x3139A50", VA = "0x18313AC50", Slot = "25")]
bool IDictionary.Contains(object key)
{
return default(bool);
}
/// <summary>Determines whether the <see cref="T:System.Collections.Generic.SortedList`2" /> contains a specific key.</summary>
/// <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.SortedList`2" />.</param>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.Collections.Generic.SortedList`2" /> contains an element with the specified key; otherwise, <see langword="false" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x060016BF RID: 5823 RVA: 0x0000A080 File Offset: 0x00008280
[Token(Token = "0x60016BF")]
[Address(RVA = "0x30AEAA0", Offset = "0x30AD8A0", VA = "0x1830AEAA0", Slot = "36")]
public bool ContainsKey(TKey key)
{
return default(bool);
}
/// <summary>Determines whether the <see cref="T:System.Collections.Generic.SortedList`2" /> contains a specific value.</summary>
/// <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.SortedList`2" />. The value can be <see langword="null" /> for reference types.</param>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.Collections.Generic.SortedList`2" /> contains an element with the specified value; otherwise, <see langword="false" />.</returns>
// Token: 0x060016C0 RID: 5824 RVA: 0x0000A098 File Offset: 0x00008298
[Token(Token = "0x60016C0")]
[Address(RVA = "0x3138400", Offset = "0x3137200", VA = "0x183138400")]
public bool ContainsValue(TValue value)
{
return default(bool);
}
// Token: 0x060016C1 RID: 5825 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016C1")]
[Address(RVA = "0x3139780", Offset = "0x3138580", VA = "0x183139780", Slot = "17")]
void ICollection<KeyValuePair<TKey, TValue>>.CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex)
{
}
/// <summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> 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 <see cref="T:System.Collections.ICollection" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
/// <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="arrayIndex" /> is less than zero.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="array" /> is multidimensional.
/// -or-
/// <paramref name="array" /> does not have zero-based indexing.
/// -or-
/// The number of elements in the source <see cref="T:System.Collections.ICollection" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.
/// -or-
/// The type of the source <see cref="T:System.Collections.ICollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
// Token: 0x060016C2 RID: 5826 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016C2")]
[Address(RVA = "0x3139B80", Offset = "0x3138980", VA = "0x183139B80", Slot = "32")]
void ICollection.CopyTo(Array array, int index)
{
}
// Token: 0x060016C3 RID: 5827 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016C3")]
[Address(RVA = "0x3138430", Offset = "0x3137230", VA = "0x183138430")]
private void EnsureCapacity(int min)
{
}
// Token: 0x060016C4 RID: 5828 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60016C4")]
[Address(RVA = "0x3138570", Offset = "0x3137370", VA = "0x183138570")]
private TValue GetByIndex(int index)
{
return null;
}
/// <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.SortedList`2" />.</summary>
/// <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1" /> of type <see cref="T:System.Collections.Generic.KeyValuePair`2" /> for the <see cref="T:System.Collections.Generic.SortedList`2" />.</returns>
// Token: 0x060016C5 RID: 5829 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60016C5")]
[Address(RVA = "0x3138640", Offset = "0x3137440", VA = "0x183138640")]
public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator()
{
return null;
}
// Token: 0x060016C6 RID: 5830 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60016C6")]
[Address(RVA = "0x3138640", Offset = "0x3137440", VA = "0x183138640", Slot = "19")]
IEnumerator<KeyValuePair<TKey, TValue>> IEnumerable<KeyValuePair<TKey, TValue>>.GetEnumerator()
{
return null;
}
/// <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> for the <see cref="T:System.Collections.IDictionary" />.</summary>
/// <returns>An <see cref="T:System.Collections.IDictionaryEnumerator" /> for the <see cref="T:System.Collections.IDictionary" />.</returns>
// Token: 0x060016C7 RID: 5831 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60016C7")]
[Address(RVA = "0x313AEB0", Offset = "0x3139CB0", VA = "0x18313AEB0", Slot = "30")]
IDictionaryEnumerator IDictionary.GetEnumerator()
{
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: 0x060016C8 RID: 5832 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60016C8")]
[Address(RVA = "0x3138640", Offset = "0x3137440", VA = "0x183138640", Slot = "20")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
// Token: 0x060016C9 RID: 5833 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60016C9")]
[Address(RVA = "0x3138820", Offset = "0x3137620", VA = "0x183138820")]
private TKey GetKey(int index)
{
return null;
}
/// <summary>Gets or sets the value associated with the specified key.</summary>
/// <param name="key">The key whose value to get or set.</param>
/// <returns>The value associated with the specified key. If the specified key is not found, a get operation throws a <see cref="T:System.Collections.Generic.KeyNotFoundException" /> and a set operation creates a new element using the specified key.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.Collections.Generic.KeyNotFoundException">The property is retrieved and <paramref name="key" /> does not exist in the collection.</exception>
// Token: 0x170004CE RID: 1230
[Token(Token = "0x170004CE")]
public TValue this[TKey key]
{
[Token(Token = "0x60016CA")]
[Address(RVA = "0x313B9D0", Offset = "0x313A7D0", VA = "0x18313B9D0", Slot = "38")]
get
{
return null;
}
[Token(Token = "0x60016CB")]
[Address(RVA = "0x313BEC0", Offset = "0x313ACC0", VA = "0x18313BEC0", Slot = "5")]
set
{
}
}
/// <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, or <see langword="null" /> if <paramref name="key" /> is not in the dictionary or <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.Generic.SortedList`2" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentException">A value is being assigned, and <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.Generic.SortedList`2" />.
/// -or-
/// A value is being assigned, and <paramref name="value" /> is of a type that is not assignable to the value type <paramref name="TValue" /> of the <see cref="T:System.Collections.Generic.SortedList`2" />.</exception>
// Token: 0x170004CF RID: 1231
[Token(Token = "0x170004CF")]
object IDictionary.this[object key]
{
[Token(Token = "0x60016CC")]
[Address(RVA = "0x313B0F0", Offset = "0x3139EF0", VA = "0x18313B0F0", Slot = "21")]
get
{
return null;
}
[Token(Token = "0x60016CD")]
[Address(RVA = "0x313B2E0", Offset = "0x313A0E0", VA = "0x18313B2E0", Slot = "22")]
set
{
}
}
/// <summary>Searches for the specified key and returns the zero-based index within the entire <see cref="T:System.Collections.Generic.SortedList`2" />.</summary>
/// <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.SortedList`2" />.</param>
/// <returns>The zero-based index of <paramref name="key" /> within the entire <see cref="T:System.Collections.Generic.SortedList`2" />, if found; otherwise, -1.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x060016CE RID: 5838 RVA: 0x0000A0B0 File Offset: 0x000082B0
[Token(Token = "0x60016CE")]
[Address(RVA = "0x3138A50", Offset = "0x3137850", VA = "0x183138A50")]
public int IndexOfKey(TKey key)
{
return 0;
}
/// <summary>Searches for the specified value and returns the zero-based index of the first occurrence within the entire <see cref="T:System.Collections.Generic.SortedList`2" />.</summary>
/// <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.SortedList`2" />. The value can be <see langword="null" /> for reference types.</param>
/// <returns>The zero-based index of the first occurrence of <paramref name="value" /> within the entire <see cref="T:System.Collections.Generic.SortedList`2" />, if found; otherwise, -1.</returns>
// Token: 0x060016CF RID: 5839 RVA: 0x0000A0C8 File Offset: 0x000082C8
[Token(Token = "0x60016CF")]
[Address(RVA = "0x3138BA0", Offset = "0x31379A0", VA = "0x183138BA0")]
public int IndexOfValue(TValue value)
{
return 0;
}
// Token: 0x060016D0 RID: 5840 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016D0")]
[Address(RVA = "0x3138BD0", Offset = "0x31379D0", VA = "0x183138BD0")]
private void Insert(int index, TKey key, TValue value)
{
}
/// <summary>Gets the value associated with the specified key.</summary>
/// <param name="key">The key whose value to get.</param>
/// <param name="value">When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the <paramref name="value" /> parameter. This parameter is passed uninitialized.</param>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.Collections.Generic.SortedList`2" /> contains an element with the specified key; otherwise, <see langword="false" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x060016D1 RID: 5841 RVA: 0x0000A0E0 File Offset: 0x000082E0
[Token(Token = "0x60016D1")]
[Address(RVA = "0x313B720", Offset = "0x313A520", VA = "0x18313B720", Slot = "37")]
public bool TryGetValue(TKey key, out TValue value)
{
return default(bool);
}
/// <summary>Removes the element at the specified index of the <see cref="T:System.Collections.Generic.SortedList`2" />.</summary>
/// <param name="index">The zero-based index of the element to remove.</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.
/// -or-
/// <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.Generic.SortedList`2.Count" />.</exception>
// Token: 0x060016D2 RID: 5842 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016D2")]
[Address(RVA = "0x3138F80", Offset = "0x3137D80", VA = "0x183138F80")]
public void RemoveAt(int index)
{
}
/// <summary>Removes the element with the specified key from the <see cref="T:System.Collections.Generic.SortedList`2" />.</summary>
/// <param name="key">The key of the element to remove.</param>
/// <returns>
/// <see langword="true" /> if the element is successfully removed; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="key" /> was not found in the original <see cref="T:System.Collections.Generic.SortedList`2" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x060016D3 RID: 5843 RVA: 0x0000A0F8 File Offset: 0x000082F8
[Token(Token = "0x60016D3")]
[Address(RVA = "0x31392B0", Offset = "0x31380B0", VA = "0x1831392B0", Slot = "10")]
public bool Remove(TKey key)
{
return default(bool);
}
/// <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>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x060016D4 RID: 5844 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016D4")]
[Address(RVA = "0x313B030", Offset = "0x3139E30", VA = "0x18313B030", Slot = "31")]
void IDictionary.Remove(object key)
{
}
// Token: 0x060016D5 RID: 5845 RVA: 0x0000A110 File Offset: 0x00008310
[Token(Token = "0x60016D5")]
[Address(RVA = "0x3138ED0", Offset = "0x3137CD0", VA = "0x183138ED0")]
private static bool IsCompatibleKey(object key)
{
return default(bool);
}
// Token: 0x04000E7B RID: 3707
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E7B")]
private TKey[] keys;
// Token: 0x04000E7C RID: 3708
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E7C")]
private TValue[] values;
// Token: 0x04000E7D RID: 3709
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E7D")]
private int _size;
// Token: 0x04000E7E RID: 3710
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E7E")]
private int version;
// Token: 0x04000E7F RID: 3711
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E7F")]
private IComparer<TKey> comparer;
// Token: 0x04000E80 RID: 3712
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E80")]
private SortedList<TKey, TValue>.KeyList keyList;
// Token: 0x04000E81 RID: 3713
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E81")]
private SortedList<TKey, TValue>.ValueList valueList;
// Token: 0x04000E82 RID: 3714
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E82")]
[NonSerialized]
private object _syncRoot;
// Token: 0x04000E83 RID: 3715
[Token(Token = "0x4000E83")]
private const int DefaultCapacity = 4;
// Token: 0x04000E84 RID: 3716
[Token(Token = "0x4000E84")]
private const int MaxArrayLength = 2146435071;
// Token: 0x0200035F RID: 863
[Token(Token = "0x200035F")]
[Serializable]
private struct Enumerator : IEnumerator<KeyValuePair<TKey, TValue>>, IDisposable, IEnumerator, IDictionaryEnumerator
{
// Token: 0x060016D6 RID: 5846 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016D6")]
[Address(RVA = "0x312FE10", Offset = "0x312EC10", VA = "0x18312FE10")]
internal Enumerator(SortedList<TKey, TValue> sortedList, int getEnumeratorRetType)
{
}
// Token: 0x060016D7 RID: 5847 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016D7")]
[Address(RVA = "0x312D630", Offset = "0x312C430", VA = "0x18312D630", Slot = "5")]
public void Dispose()
{
}
// Token: 0x170004D0 RID: 1232
// (get) Token: 0x060016D8 RID: 5848 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004D0")]
object IDictionaryEnumerator.Key
{
[Token(Token = "0x60016D8")]
[Address(RVA = "0x312E500", Offset = "0x312D300", VA = "0x18312E500", Slot = "9")]
get
{
return null;
}
}
// Token: 0x060016D9 RID: 5849 RVA: 0x0000A128 File Offset: 0x00008328
[Token(Token = "0x60016D9")]
[Address(RVA = "0x312D650", Offset = "0x312C450", VA = "0x18312D650", Slot = "6")]
public bool MoveNext()
{
return default(bool);
}
// Token: 0x170004D1 RID: 1233
// (get) Token: 0x060016DA RID: 5850 RVA: 0x0000A140 File Offset: 0x00008340
[Token(Token = "0x170004D1")]
DictionaryEntry IDictionaryEnumerator.Entry
{
[Token(Token = "0x60016DA")]
[Address(RVA = "0x312DBB0", Offset = "0x312C9B0", VA = "0x18312DBB0", Slot = "11")]
get
{
return default(DictionaryEntry);
}
}
// Token: 0x170004D2 RID: 1234
// (get) Token: 0x060016DB RID: 5851 RVA: 0x0000A158 File Offset: 0x00008358
[Token(Token = "0x170004D2")]
public KeyValuePair<TKey, TValue> Current
{
[Token(Token = "0x60016DB")]
[Address(RVA = "0x312FFF0", Offset = "0x312EDF0", VA = "0x18312FFF0", Slot = "4")]
get
{
return default(KeyValuePair<TKey, TValue>);
}
}
// Token: 0x170004D3 RID: 1235
// (get) Token: 0x060016DC RID: 5852 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004D3")]
object IEnumerator.Current
{
[Token(Token = "0x60016DC")]
[Address(RVA = "0x312F2D0", Offset = "0x312E0D0", VA = "0x18312F2D0", Slot = "7")]
get
{
return null;
}
}
// Token: 0x170004D4 RID: 1236
// (get) Token: 0x060016DD RID: 5853 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004D4")]
object IDictionaryEnumerator.Value
{
[Token(Token = "0x60016DD")]
[Address(RVA = "0x312EAA0", Offset = "0x312D8A0", VA = "0x18312EAA0", Slot = "10")]
get
{
return null;
}
}
// Token: 0x060016DE RID: 5854 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016DE")]
[Address(RVA = "0x312ECF0", Offset = "0x312DAF0", VA = "0x18312ECF0", Slot = "8")]
void IEnumerator.Reset()
{
}
// Token: 0x04000E85 RID: 3717
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E85")]
private SortedList<TKey, TValue> _sortedList;
// Token: 0x04000E86 RID: 3718
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E86")]
private TKey _key;
// Token: 0x04000E87 RID: 3719
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E87")]
private TValue _value;
// Token: 0x04000E88 RID: 3720
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E88")]
private int _index;
// Token: 0x04000E89 RID: 3721
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E89")]
private int _version;
// Token: 0x04000E8A RID: 3722
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E8A")]
private int _getEnumeratorRetType;
}
// Token: 0x02000360 RID: 864
[Token(Token = "0x2000360")]
[Serializable]
private sealed class SortedListKeyEnumerator : IEnumerator<TKey>, IDisposable, IEnumerator
{
// Token: 0x060016DF RID: 5855 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016DF")]
[Address(RVA = "0x3137C30", Offset = "0x3136A30", VA = "0x183137C30")]
internal SortedListKeyEnumerator(SortedList<TKey, TValue> sortedList)
{
}
// Token: 0x060016E0 RID: 5856 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016E0")]
[Address(RVA = "0x3137700", Offset = "0x3136500", VA = "0x183137700", Slot = "5")]
public void Dispose()
{
}
// Token: 0x060016E1 RID: 5857 RVA: 0x0000A170 File Offset: 0x00008370
[Token(Token = "0x60016E1")]
[Address(RVA = "0x3137730", Offset = "0x3136530", VA = "0x183137730", Slot = "6")]
public bool MoveNext()
{
return default(bool);
}
// Token: 0x170004D5 RID: 1237
// (get) Token: 0x060016E2 RID: 5858 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004D5")]
public TKey Current
{
[Token(Token = "0x60016E2")]
[Address(RVA = "0x3F6400", Offset = "0x3F5200", VA = "0x1803F6400", Slot = "4")]
get
{
return null;
}
}
// Token: 0x170004D6 RID: 1238
// (get) Token: 0x060016E3 RID: 5859 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004D6")]
object IEnumerator.Current
{
[Token(Token = "0x60016E3")]
[Address(RVA = "0x3137B80", Offset = "0x3136980", VA = "0x183137B80", Slot = "7")]
get
{
return null;
}
}
// Token: 0x060016E4 RID: 5860 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016E4")]
[Address(RVA = "0x3137A20", Offset = "0x3136820", VA = "0x183137A20", Slot = "8")]
void IEnumerator.Reset()
{
}
// Token: 0x04000E8B RID: 3723
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E8B")]
private SortedList<TKey, TValue> _sortedList;
// Token: 0x04000E8C RID: 3724
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E8C")]
private int _index;
// Token: 0x04000E8D RID: 3725
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E8D")]
private int _version;
// Token: 0x04000E8E RID: 3726
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E8E")]
private TKey _currentKey;
}
// Token: 0x02000361 RID: 865
[Token(Token = "0x2000361")]
[Serializable]
private sealed class SortedListValueEnumerator : IEnumerator<TValue>, IDisposable, IEnumerator
{
// Token: 0x060016E5 RID: 5861 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016E5")]
[Address(RVA = "0x3137C30", Offset = "0x3136A30", VA = "0x183137C30")]
internal SortedListValueEnumerator(SortedList<TKey, TValue> sortedList)
{
}
// Token: 0x060016E6 RID: 5862 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016E6")]
[Address(RVA = "0x3137700", Offset = "0x3136500", VA = "0x183137700", Slot = "5")]
public void Dispose()
{
}
// Token: 0x060016E7 RID: 5863 RVA: 0x0000A188 File Offset: 0x00008388
[Token(Token = "0x60016E7")]
[Address(RVA = "0x3137DA0", Offset = "0x3136BA0", VA = "0x183137DA0", Slot = "6")]
public bool MoveNext()
{
return default(bool);
}
// Token: 0x170004D7 RID: 1239
// (get) Token: 0x060016E8 RID: 5864 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004D7")]
public TValue Current
{
[Token(Token = "0x60016E8")]
[Address(RVA = "0x3F6400", Offset = "0x3F5200", VA = "0x1803F6400", Slot = "4")]
get
{
return null;
}
}
// Token: 0x170004D8 RID: 1240
// (get) Token: 0x060016E9 RID: 5865 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004D8")]
object IEnumerator.Current
{
[Token(Token = "0x60016E9")]
[Address(RVA = "0x3137FD0", Offset = "0x3136DD0", VA = "0x183137FD0", Slot = "7")]
get
{
return null;
}
}
// Token: 0x060016EA RID: 5866 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016EA")]
[Address(RVA = "0x3137ED0", Offset = "0x3136CD0", VA = "0x183137ED0", Slot = "8")]
void IEnumerator.Reset()
{
}
// Token: 0x04000E8F RID: 3727
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E8F")]
private SortedList<TKey, TValue> _sortedList;
// Token: 0x04000E90 RID: 3728
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E90")]
private int _index;
// Token: 0x04000E91 RID: 3729
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E91")]
private int _version;
// Token: 0x04000E92 RID: 3730
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E92")]
private TValue _currentValue;
}
// Token: 0x02000362 RID: 866
[Token(Token = "0x2000362")]
[DebuggerTypeProxy(typeof(DictionaryKeyCollectionDebugView<, >))]
[DebuggerDisplay("Count = {Count}")]
[Serializable]
private sealed class KeyList : IList<TKey>, ICollection<TKey>, IEnumerable<TKey>, IEnumerable, ICollection
{
// Token: 0x060016EB RID: 5867 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016EB")]
[Address(RVA = "0x1A83E00", Offset = "0x1A82C00", VA = "0x181A83E00")]
internal KeyList(SortedList<TKey, TValue> dictionary)
{
}
// Token: 0x170004D9 RID: 1241
// (get) Token: 0x060016EC RID: 5868 RVA: 0x0000A1A0 File Offset: 0x000083A0
[Token(Token = "0x170004D9")]
public int Count
{
[Token(Token = "0x60016EC")]
[Address(RVA = "0x2544760", Offset = "0x2543560", VA = "0x182544760", Slot = "19")]
get
{
return 0;
}
}
// Token: 0x170004DA RID: 1242
// (get) Token: 0x060016ED RID: 5869 RVA: 0x0000A1B8 File Offset: 0x000083B8
[Token(Token = "0x170004DA")]
public bool IsReadOnly
{
[Token(Token = "0x60016ED")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "10")]
get
{
return default(bool);
}
}
// Token: 0x170004DB RID: 1243
// (get) Token: 0x060016EE RID: 5870 RVA: 0x0000A1D0 File Offset: 0x000083D0
[Token(Token = "0x170004DB")]
bool ICollection.IsSynchronized
{
[Token(Token = "0x60016EE")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "21")]
get
{
return default(bool);
}
}
// Token: 0x170004DC RID: 1244
// (get) Token: 0x060016EF RID: 5871 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004DC")]
object ICollection.SyncRoot
{
[Token(Token = "0x60016EF")]
[Address(RVA = "0x3131C10", Offset = "0x3130A10", VA = "0x183131C10", Slot = "20")]
get
{
return null;
}
}
// Token: 0x060016F0 RID: 5872 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016F0")]
[Address(RVA = "0x3131350", Offset = "0x3130150", VA = "0x183131350", Slot = "11")]
public void Add(TKey key)
{
}
// Token: 0x060016F1 RID: 5873 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016F1")]
[Address(RVA = "0x3131410", Offset = "0x3130210", VA = "0x183131410", Slot = "12")]
public void Clear()
{
}
// Token: 0x060016F2 RID: 5874 RVA: 0x0000A1E8 File Offset: 0x000083E8
[Token(Token = "0x60016F2")]
[Address(RVA = "0x1F0FEF0", Offset = "0x1F0ECF0", VA = "0x181F0FEF0", Slot = "13")]
public bool Contains(TKey key)
{
return default(bool);
}
// Token: 0x060016F3 RID: 5875 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016F3")]
[Address(RVA = "0x3131470", Offset = "0x3130270", VA = "0x183131470", Slot = "14")]
public void CopyTo(TKey[] array, int arrayIndex)
{
}
// Token: 0x060016F4 RID: 5876 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016F4")]
[Address(RVA = "0x3131940", Offset = "0x3130740", VA = "0x183131940", Slot = "18")]
void ICollection.CopyTo(Array array, int arrayIndex)
{
}
// Token: 0x060016F5 RID: 5877 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016F5")]
[Address(RVA = "0x3131760", Offset = "0x3130560", VA = "0x183131760", Slot = "7")]
public void Insert(int index, TKey value)
{
}
// Token: 0x170004DD RID: 1245
[Token(Token = "0x170004DD")]
public TKey this[int index]
{
[Token(Token = "0x60016F6")]
[Address(RVA = "0x20F0BC0", Offset = "0x20EF9C0", VA = "0x1820F0BC0", Slot = "4")]
get
{
return null;
}
[Token(Token = "0x60016F7")]
[Address(RVA = "0x3131CA0", Offset = "0x3130AA0", VA = "0x183131CA0", Slot = "5")]
set
{
}
}
// Token: 0x060016F8 RID: 5880 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60016F8")]
[Address(RVA = "0x31314E0", Offset = "0x31302E0", VA = "0x1831314E0", Slot = "16")]
public IEnumerator<TKey> GetEnumerator()
{
return null;
}
// Token: 0x060016F9 RID: 5881 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60016F9")]
[Address(RVA = "0x31314E0", Offset = "0x31302E0", VA = "0x1831314E0", Slot = "17")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
// Token: 0x060016FA RID: 5882 RVA: 0x0000A200 File Offset: 0x00008400
[Token(Token = "0x60016FA")]
[Address(RVA = "0x3131550", Offset = "0x3130350", VA = "0x183131550", Slot = "6")]
public int IndexOf(TKey key)
{
return 0;
}
// Token: 0x060016FB RID: 5883 RVA: 0x0000A218 File Offset: 0x00008418
[Token(Token = "0x60016FB")]
[Address(RVA = "0x3131880", Offset = "0x3130680", VA = "0x183131880", Slot = "15")]
public bool Remove(TKey key)
{
return default(bool);
}
// Token: 0x060016FC RID: 5884 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016FC")]
[Address(RVA = "0x3131820", Offset = "0x3130620", VA = "0x183131820", Slot = "8")]
public void RemoveAt(int index)
{
}
// Token: 0x04000E93 RID: 3731
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E93")]
private SortedList<TKey, TValue> _dict;
}
// Token: 0x02000363 RID: 867
[Token(Token = "0x2000363")]
[DebuggerDisplay("Count = {Count}")]
[DebuggerTypeProxy(typeof(DictionaryValueCollectionDebugView<, >))]
[Serializable]
private sealed class ValueList : IList<TValue>, ICollection<TValue>, IEnumerable<TValue>, IEnumerable, ICollection
{
// Token: 0x060016FD RID: 5885 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016FD")]
[Address(RVA = "0x1A83E00", Offset = "0x1A82C00", VA = "0x181A83E00")]
internal ValueList(SortedList<TKey, TValue> dictionary)
{
}
// Token: 0x170004DE RID: 1246
// (get) Token: 0x060016FE RID: 5886 RVA: 0x0000A230 File Offset: 0x00008430
[Token(Token = "0x170004DE")]
public int Count
{
[Token(Token = "0x60016FE")]
[Address(RVA = "0x2544760", Offset = "0x2543560", VA = "0x182544760", Slot = "19")]
get
{
return 0;
}
}
// Token: 0x170004DF RID: 1247
// (get) Token: 0x060016FF RID: 5887 RVA: 0x0000A248 File Offset: 0x00008448
[Token(Token = "0x170004DF")]
public bool IsReadOnly
{
[Token(Token = "0x60016FF")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "10")]
get
{
return default(bool);
}
}
// Token: 0x170004E0 RID: 1248
// (get) Token: 0x06001700 RID: 5888 RVA: 0x0000A260 File Offset: 0x00008460
[Token(Token = "0x170004E0")]
bool ICollection.IsSynchronized
{
[Token(Token = "0x6001700")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "21")]
get
{
return default(bool);
}
}
// Token: 0x170004E1 RID: 1249
// (get) Token: 0x06001701 RID: 5889 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004E1")]
object ICollection.SyncRoot
{
[Token(Token = "0x6001701")]
[Address(RVA = "0x313DC80", Offset = "0x313CA80", VA = "0x18313DC80", Slot = "20")]
get
{
return null;
}
}
// Token: 0x06001702 RID: 5890 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001702")]
[Address(RVA = "0x313D510", Offset = "0x313C310", VA = "0x18313D510", Slot = "11")]
public void Add(TValue key)
{
}
// Token: 0x06001703 RID: 5891 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001703")]
[Address(RVA = "0x313D630", Offset = "0x313C430", VA = "0x18313D630", Slot = "12")]
public void Clear()
{
}
// Token: 0x06001704 RID: 5892 RVA: 0x0000A278 File Offset: 0x00008478
[Token(Token = "0x6001704")]
[Address(RVA = "0x1F0FEF0", Offset = "0x1F0ECF0", VA = "0x181F0FEF0", Slot = "13")]
public bool Contains(TValue value)
{
return default(bool);
}
// Token: 0x06001705 RID: 5893 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001705")]
[Address(RVA = "0x313D690", Offset = "0x313C490", VA = "0x18313D690", Slot = "14")]
public void CopyTo(TValue[] array, int arrayIndex)
{
}
// Token: 0x06001706 RID: 5894 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001706")]
[Address(RVA = "0x313D9B0", Offset = "0x313C7B0", VA = "0x18313D9B0", Slot = "18")]
void ICollection.CopyTo(Array array, int index)
{
}
// Token: 0x06001707 RID: 5895 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001707")]
[Address(RVA = "0x313D7D0", Offset = "0x313C5D0", VA = "0x18313D7D0", Slot = "7")]
public void Insert(int index, TValue value)
{
}
// Token: 0x170004E2 RID: 1250
[Token(Token = "0x170004E2")]
public TValue this[int index]
{
[Token(Token = "0x6001708")]
[Address(RVA = "0x20F0BC0", Offset = "0x20EF9C0", VA = "0x1820F0BC0", Slot = "4")]
get
{
return null;
}
[Token(Token = "0x6001709")]
[Address(RVA = "0x313DD30", Offset = "0x313CB30", VA = "0x18313DD30", Slot = "5")]
set
{
}
}
// Token: 0x0600170A RID: 5898 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600170A")]
[Address(RVA = "0x31314E0", Offset = "0x31302E0", VA = "0x1831314E0", Slot = "16")]
public IEnumerator<TValue> GetEnumerator()
{
return null;
}
// Token: 0x0600170B RID: 5899 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600170B")]
[Address(RVA = "0x31314E0", Offset = "0x31302E0", VA = "0x1831314E0", Slot = "17")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
// Token: 0x0600170C RID: 5900 RVA: 0x0000A290 File Offset: 0x00008490
[Token(Token = "0x600170C")]
[Address(RVA = "0x313D700", Offset = "0x313C500", VA = "0x18313D700", Slot = "6")]
public int IndexOf(TValue value)
{
return 0;
}
// Token: 0x0600170D RID: 5901 RVA: 0x0000A2A8 File Offset: 0x000084A8
[Token(Token = "0x600170D")]
[Address(RVA = "0x313D950", Offset = "0x313C750", VA = "0x18313D950", Slot = "15")]
public bool Remove(TValue value)
{
return default(bool);
}
// Token: 0x0600170E RID: 5902 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600170E")]
[Address(RVA = "0x313D890", Offset = "0x313C690", VA = "0x18313D890", Slot = "8")]
public void RemoveAt(int index)
{
}
// Token: 0x04000E94 RID: 3732
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E94")]
private SortedList<TKey, TValue> _dict;
}
}
}
+1021
View File
@@ -0,0 +1,1021 @@
using System;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
/// <summary>Represents a collection of objects that is maintained in sorted order.</summary>
/// <typeparam name="T">The type of elements in the set.</typeparam>
// Token: 0x02000364 RID: 868
[Token(Token = "0x2000364")]
[DebuggerDisplay("Count = {Count}")]
[DebuggerTypeProxy(typeof(ICollectionDebugView<>))]
[Serializable]
public class SortedSet<T> : ISet<T>, ICollection<T>, IEnumerable<T>, IEnumerable, ICollection, IReadOnlyCollection<T>, ISerializable, IDeserializationCallback
{
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedSet`1" /> class.</summary>
// Token: 0x0600170F RID: 5903 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600170F")]
[Address(RVA = "0x334AF00", Offset = "0x3349D00", VA = "0x18334AF00")]
public SortedSet()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedSet`1" /> class that uses a specified comparer.</summary>
/// <param name="comparer">The default comparer to use for comparing objects.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="comparer" /> is <see langword="null" />.</exception>
// Token: 0x06001710 RID: 5904 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001710")]
[Address(RVA = "0x334AF50", Offset = "0x3349D50", VA = "0x18334AF50")]
public SortedSet(IComparer<T> comparer)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedSet`1" /> class that contains elements copied from a specified enumerable collection and that uses a specified comparer.</summary>
/// <param name="collection">The enumerable collection to be copied.</param>
/// <param name="comparer">The default comparer to use for comparing objects.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="collection" /> is <see langword="null" />.</exception>
// Token: 0x06001711 RID: 5905 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001711")]
[Address(RVA = "0x334AAE0", Offset = "0x33498E0", VA = "0x18334AAE0")]
public SortedSet(IEnumerable<T> collection, IComparer<T> comparer)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedSet`1" /> class that contains serialized data.</summary>
/// <param name="info">The object that contains the information that is required to serialize the <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
/// <param name="context">The structure that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
// Token: 0x06001712 RID: 5906 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001712")]
[Address(RVA = "0x334AEC0", Offset = "0x3349CC0", VA = "0x18334AEC0")]
protected SortedSet(SerializationInfo info, StreamingContext context)
{
}
// Token: 0x06001713 RID: 5907 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001713")]
[Address(RVA = "0x33412C0", Offset = "0x33400C0", VA = "0x1833412C0")]
private void AddAllElements(IEnumerable<T> collection)
{
}
// Token: 0x06001714 RID: 5908 RVA: 0x0000A2C0 File Offset: 0x000084C0
[Token(Token = "0x6001714")]
[Address(RVA = "0x3344FB0", Offset = "0x3343DB0", VA = "0x183344FB0", Slot = "23")]
internal virtual bool InOrderTreeWalk(TreeWalkPredicate<T> action)
{
return default(bool);
}
/// <summary>Gets the number of elements in the <see cref="T:System.Collections.Generic.SortedSet`1" />.</summary>
/// <returns>The number of elements in the <see cref="T:System.Collections.Generic.SortedSet`1" />.</returns>
// Token: 0x170004E3 RID: 1251
// (get) Token: 0x06001715 RID: 5909 RVA: 0x0000A2D8 File Offset: 0x000084D8
[Token(Token = "0x170004E3")]
public int Count
{
[Token(Token = "0x6001715")]
[Address(RVA = "0x334B740", Offset = "0x334A540", VA = "0x18334B740", Slot = "20")]
get
{
return 0;
}
}
/// <summary>Gets the <see cref="T:System.Collections.Generic.IComparer`1" /> object that is used to order the values in the <see cref="T:System.Collections.Generic.SortedSet`1" />.</summary>
/// <returns>The comparer that is used to order the values in the <see cref="T:System.Collections.Generic.SortedSet`1" />.</returns>
// Token: 0x170004E4 RID: 1252
// (get) Token: 0x06001716 RID: 5910 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004E4")]
public IComparer<T> Comparer
{
[Token(Token = "0x6001716")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
get
{
return null;
}
}
// Token: 0x170004E5 RID: 1253
// (get) Token: 0x06001717 RID: 5911 RVA: 0x0000A2F0 File Offset: 0x000084F0
[Token(Token = "0x170004E5")]
bool ICollection<T>.IsReadOnly
{
[Token(Token = "0x6001717")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "8")]
get
{
return default(bool);
}
}
/// <summary>Gets a value that indicates whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
/// <returns>
/// <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized; otherwise, <see langword="false" />.</returns>
// Token: 0x170004E6 RID: 1254
// (get) Token: 0x06001718 RID: 5912 RVA: 0x0000A308 File Offset: 0x00008508
[Token(Token = "0x170004E6")]
bool ICollection.IsSynchronized
{
[Token(Token = "0x6001718")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "19")]
get
{
return default(bool);
}
}
/// <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
/// <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />, this property always returns the current instance.</returns>
// Token: 0x170004E7 RID: 1255
// (get) Token: 0x06001719 RID: 5913 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004E7")]
object ICollection.SyncRoot
{
[Token(Token = "0x6001719")]
[Address(RVA = "0x3349180", Offset = "0x3347F80", VA = "0x183349180", Slot = "18")]
get
{
return null;
}
}
// Token: 0x0600171A RID: 5914 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600171A")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080", Slot = "24")]
internal virtual void VersionCheck()
{
}
// Token: 0x0600171B RID: 5915 RVA: 0x0000A320 File Offset: 0x00008520
[Token(Token = "0x600171B")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "25")]
internal virtual bool IsWithinRange(T item)
{
return default(bool);
}
/// <summary>Adds an element to the set and returns a value that indicates if it was successfully added.</summary>
/// <param name="item">The element to add to the set.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="item" /> is added to the set; otherwise, <see langword="false" />.</returns>
// Token: 0x0600171C RID: 5916 RVA: 0x0000A338 File Offset: 0x00008538
[Token(Token = "0x600171C")]
[Address(RVA = "0x3341C30", Offset = "0x3340A30", VA = "0x183341C30", Slot = "4")]
public bool Add(T item)
{
return default(bool);
}
// Token: 0x0600171D RID: 5917 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600171D")]
[Address(RVA = "0x3348340", Offset = "0x3347140", VA = "0x183348340", Slot = "9")]
void ICollection<T>.Add(T item)
{
}
// Token: 0x0600171E RID: 5918 RVA: 0x0000A350 File Offset: 0x00008550
[Token(Token = "0x600171E")]
[Address(RVA = "0x3341820", Offset = "0x3340620", VA = "0x183341820", Slot = "26")]
internal virtual bool AddIfNotPresent(T item)
{
return default(bool);
}
/// <summary>Removes a specified item from the <see cref="T:System.Collections.Generic.SortedSet`1" />.</summary>
/// <param name="item">The element to remove.</param>
/// <returns>
/// <see langword="true" /> if the element is found and successfully removed; otherwise, <see langword="false" />.</returns>
// Token: 0x0600171F RID: 5919 RVA: 0x0000A368 File Offset: 0x00008568
[Token(Token = "0x600171F")]
[Address(RVA = "0x3348080", Offset = "0x3346E80", VA = "0x183348080", Slot = "13")]
public bool Remove(T item)
{
return default(bool);
}
// Token: 0x06001720 RID: 5920 RVA: 0x0000A380 File Offset: 0x00008580
[Token(Token = "0x6001720")]
[Address(RVA = "0x3343C10", Offset = "0x3342A10", VA = "0x183343C10", Slot = "27")]
internal virtual bool DoRemove(T item)
{
return default(bool);
}
/// <summary>Removes all elements from the set.</summary>
// Token: 0x06001721 RID: 5921 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001721")]
[Address(RVA = "0x3341CA0", Offset = "0x3340AA0", VA = "0x183341CA0", Slot = "28")]
public virtual void Clear()
{
}
/// <summary>Determines whether the set contains a specific element.</summary>
/// <param name="item">The element to locate in the set.</param>
/// <returns>
/// <see langword="true" /> if the set contains <paramref name="item" />; otherwise, <see langword="false" />.</returns>
// Token: 0x06001722 RID: 5922 RVA: 0x0000A398 File Offset: 0x00008598
[Token(Token = "0x6001722")]
[Address(RVA = "0x3343400", Offset = "0x3342200", VA = "0x183343400", Slot = "29")]
public virtual bool Contains(T item)
{
return default(bool);
}
/// <summary>Copies the complete <see cref="T:System.Collections.Generic.SortedSet`1" /> to a compatible one-dimensional array, starting at the specified array index.</summary>
/// <param name="array">A one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.SortedSet`1" />. The array must have zero-based indexing.</param>
/// <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
/// <exception cref="T:System.ArgumentException">The number of elements in the source array is greater than the available space from <paramref name="index" /> to the end of the destination array.</exception>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.</exception>
// Token: 0x06001723 RID: 5923 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001723")]
[Address(RVA = "0x3343B90", Offset = "0x3342990", VA = "0x183343B90", Slot = "12")]
public void CopyTo(T[] array, int index)
{
}
/// <summary>Copies a specified number of elements from <see cref="T:System.Collections.Generic.SortedSet`1" /> to a compatible one-dimensional array, starting at the specified array index.</summary>
/// <param name="array">A one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.SortedSet`1" />. The array must have zero-based indexing.</param>
/// <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
/// <param name="count">The number of elements to copy.</param>
/// <exception cref="T:System.ArgumentException">The number of elements in the source array is greater than the available space from <paramref name="index" /> to the end of the destination array.</exception>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.
/// -or-
/// <paramref name="count" /> is less than zero.</exception>
// Token: 0x06001724 RID: 5924 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001724")]
[Address(RVA = "0x3343470", Offset = "0x3342270", VA = "0x183343470")]
public void CopyTo(T[] array, int index, int count)
{
}
/// <summary>Copies the complete <see cref="T:System.Collections.Generic.SortedSet`1" /> to a compatible one-dimensional array, starting at the specified array index.</summary>
/// <param name="array">A one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.SortedSet`1" />. The array must have zero-based indexing.</param>
/// <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
/// <exception cref="T:System.ArgumentException">The number of elements in the source array is greater than the available space from <paramref name="index" /> to the end of the destination array.</exception>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.</exception>
// Token: 0x06001725 RID: 5925 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001725")]
[Address(RVA = "0x3348440", Offset = "0x3347240", VA = "0x183348440", Slot = "16")]
void ICollection.CopyTo(Array array, int index)
{
}
/// <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.SortedSet`1" />.</summary>
/// <returns>An enumerator that iterates through the <see cref="T:System.Collections.Generic.SortedSet`1" /> in sorted order.</returns>
// Token: 0x06001726 RID: 5926 RVA: 0x0000A3B0 File Offset: 0x000085B0
[Token(Token = "0x6001726")]
[Address(RVA = "0x33447C0", Offset = "0x33435C0", VA = "0x1833447C0")]
public SortedSet<T>.Enumerator GetEnumerator()
{
return default(SortedSet<T>.Enumerator);
}
// Token: 0x06001727 RID: 5927 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001727")]
[Address(RVA = "0x33483B0", Offset = "0x33471B0", VA = "0x1833483B0", Slot = "14")]
IEnumerator<T> IEnumerable<T>.GetEnumerator()
{
return null;
}
/// <summary>Returns an enumerator that iterates through a collection.</summary>
/// <returns>An enumerator that can be used to iterate through the collection.</returns>
// Token: 0x06001728 RID: 5928 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001728")]
[Address(RVA = "0x33483B0", Offset = "0x33471B0", VA = "0x1833483B0", Slot = "15")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
// Token: 0x06001729 RID: 5929 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001729")]
[Address(RVA = "0x33451E0", Offset = "0x3343FE0", VA = "0x1833451E0")]
private void InsertionBalance(SortedSet<T>.Node current, ref SortedSet<T>.Node parent, SortedSet<T>.Node grandParent, SortedSet<T>.Node greatGrandParent)
{
}
// Token: 0x0600172A RID: 5930 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600172A")]
[Address(RVA = "0x33480F0", Offset = "0x3346EF0", VA = "0x1833480F0")]
private void ReplaceChildOrRoot(SortedSet<T>.Node parent, SortedSet<T>.Node child, SortedSet<T>.Node newChild)
{
}
// Token: 0x0600172B RID: 5931 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600172B")]
[Address(RVA = "0x3348140", Offset = "0x3346F40", VA = "0x183348140")]
private void ReplaceNode(SortedSet<T>.Node match, SortedSet<T>.Node parentOfMatch, SortedSet<T>.Node successor, SortedSet<T>.Node parentOfSuccessor)
{
}
// Token: 0x0600172C RID: 5932 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600172C")]
[Address(RVA = "0x3344520", Offset = "0x3343320", VA = "0x183344520", Slot = "30")]
internal virtual SortedSet<T>.Node FindNode(T item)
{
return null;
}
// Token: 0x0600172D RID: 5933 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600172D")]
[Address(RVA = "0x136A2A0", Offset = "0x13690A0", VA = "0x18136A2A0")]
internal void UpdateVersion()
{
}
// Token: 0x0600172E RID: 5934 RVA: 0x0000A3C8 File Offset: 0x000085C8
[Token(Token = "0x600172E")]
[Address(RVA = "0x3344ED0", Offset = "0x3343CD0", VA = "0x183344ED0")]
private bool HasEqualComparer(SortedSet<T> other)
{
return default(bool);
}
/// <summary>Modifies the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object so that it contains all elements that are present in either the current object or the specified collection.</summary>
/// <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="other" /> is <see langword="null" />.</exception>
// Token: 0x0600172F RID: 5935 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600172F")]
[Address(RVA = "0x334A250", Offset = "0x3349050", VA = "0x18334A250", Slot = "5")]
public void UnionWith(IEnumerable<T> other)
{
}
// Token: 0x06001730 RID: 5936 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001730")]
[Address(RVA = "0x3341CB0", Offset = "0x3340AB0", VA = "0x183341CB0")]
private static SortedSet<T>.Node ConstructRootFromSortedArray(T[] arr, int startIndex, int endIndex, SortedSet<T>.Node redNode)
{
return null;
}
/// <summary>Modifies the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object so that it contains only elements that are also in a specified collection.</summary>
/// <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="other" /> is <see langword="null" />.</exception>
// Token: 0x06001731 RID: 5937 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001731")]
[Address(RVA = "0x33460D0", Offset = "0x3344ED0", VA = "0x1833460D0", Slot = "31")]
public virtual void IntersectWith(IEnumerable<T> other)
{
}
// Token: 0x06001732 RID: 5938 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001732")]
[Address(RVA = "0x3345350", Offset = "0x3344150", VA = "0x183345350", Slot = "32")]
internal virtual void IntersectWithEnumerable(IEnumerable<T> other)
{
}
/// <summary>Gets the minimum value in the <see cref="T:System.Collections.Generic.SortedSet`1" />, as defined by the comparer.</summary>
/// <returns>The minimum value in the set.</returns>
// Token: 0x170004E8 RID: 1256
// (get) Token: 0x06001733 RID: 5939 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004E8")]
public T Min
{
[Token(Token = "0x6001733")]
[Address(RVA = "0x334BAD0", Offset = "0x334A8D0", VA = "0x18334BAD0")]
get
{
return null;
}
}
// Token: 0x170004E9 RID: 1257
// (get) Token: 0x06001734 RID: 5940 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004E9")]
internal virtual T MinInternal
{
[Token(Token = "0x6001734")]
[Address(RVA = "0x334B940", Offset = "0x334A740", VA = "0x18334B940", Slot = "33")]
get
{
return null;
}
}
/// <summary>Gets the maximum value in the <see cref="T:System.Collections.Generic.SortedSet`1" />, as defined by the comparer.</summary>
/// <returns>The maximum value in the set.</returns>
// Token: 0x170004EA RID: 1258
// (get) Token: 0x06001735 RID: 5941 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004EA")]
public T Max
{
[Token(Token = "0x6001735")]
[Address(RVA = "0x334B900", Offset = "0x334A700", VA = "0x18334B900")]
get
{
return null;
}
}
// Token: 0x170004EB RID: 1259
// (get) Token: 0x06001736 RID: 5942 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004EB")]
internal virtual T MaxInternal
{
[Token(Token = "0x6001736")]
[Address(RVA = "0x334B770", Offset = "0x334A570", VA = "0x18334B770", Slot = "34")]
get
{
return null;
}
}
/// <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface, and returns the data that you need to serialize the <see cref="T:System.Collections.Generic.SortedSet`1" /> instance.</summary>
/// <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information that is required to serialize the <see cref="T:System.Collections.Generic.SortedSet`1" /> instance.</param>
/// <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.SortedSet`1" /> instance.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="info" /> is <see langword="null" />.</exception>
// Token: 0x06001737 RID: 5943 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001737")]
[Address(RVA = "0x3349220", Offset = "0x3348020", VA = "0x183349220", Slot = "21")]
void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and returns the data that you must have to serialize a <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</summary>
/// <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information that is required to serialize the <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
/// <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="info" /> is <see langword="null" />.</exception>
// Token: 0x06001738 RID: 5944 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001738")]
[Address(RVA = "0x3344CE0", Offset = "0x3343AE0", VA = "0x183344CE0", Slot = "35")]
protected virtual void GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Implements the <see cref="T:System.Runtime.Serialization.IDeserializationCallback" /> interface, and raises the deserialization event when the deserialization is completed.</summary>
/// <param name="sender">The source of the deserialization event.</param>
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object associated with the current <see cref="T:System.Collections.Generic.SortedSet`1" /> instance is invalid.</exception>
// Token: 0x06001739 RID: 5945 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001739")]
[Address(RVA = "0x33491F0", Offset = "0x3347FF0", VA = "0x1833491F0", Slot = "22")]
void IDeserializationCallback.OnDeserialization(object sender)
{
}
/// <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface, and raises the deserialization event when the deserialization is completed.</summary>
/// <param name="sender">The source of the deserialization event.</param>
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object associated with the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object is invalid.</exception>
// Token: 0x0600173A RID: 5946 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600173A")]
[Address(RVA = "0x3347D60", Offset = "0x3346B60", VA = "0x183347D60", Slot = "36")]
protected virtual void OnDeserialization(object sender)
{
}
// Token: 0x0600173B RID: 5947 RVA: 0x0000A3E0 File Offset: 0x000085E0
[Token(Token = "0x600173B")]
[Address(RVA = "0x3347720", Offset = "0x3346520", VA = "0x183347720")]
private static int Log2(int value)
{
return 0;
}
// Token: 0x04000E95 RID: 3733
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E95")]
private SortedSet<T>.Node root;
// Token: 0x04000E96 RID: 3734
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E96")]
private IComparer<T> comparer;
// Token: 0x04000E97 RID: 3735
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E97")]
private int count;
// Token: 0x04000E98 RID: 3736
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E98")]
private int version;
// Token: 0x04000E99 RID: 3737
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E99")]
[NonSerialized]
private object _syncRoot;
// Token: 0x04000E9A RID: 3738
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E9A")]
private SerializationInfo siInfo;
// Token: 0x04000E9B RID: 3739
[Token(Token = "0x4000E9B")]
private const string ComparerName = "Comparer";
// Token: 0x04000E9C RID: 3740
[Token(Token = "0x4000E9C")]
private const string CountName = "Count";
// Token: 0x04000E9D RID: 3741
[Token(Token = "0x4000E9D")]
private const string ItemsName = "Items";
// Token: 0x04000E9E RID: 3742
[Token(Token = "0x4000E9E")]
private const string VersionName = "Version";
// Token: 0x04000E9F RID: 3743
[Token(Token = "0x4000E9F")]
private const string TreeName = "Tree";
// Token: 0x04000EA0 RID: 3744
[Token(Token = "0x4000EA0")]
private const string NodeValueName = "Item";
// Token: 0x04000EA1 RID: 3745
[Token(Token = "0x4000EA1")]
private const string EnumStartName = "EnumStarted";
// Token: 0x04000EA2 RID: 3746
[Token(Token = "0x4000EA2")]
private const string ReverseName = "Reverse";
// Token: 0x04000EA3 RID: 3747
[Token(Token = "0x4000EA3")]
private const string EnumVersionName = "EnumVersion";
// Token: 0x04000EA4 RID: 3748
[Token(Token = "0x4000EA4")]
private const string MinName = "Min";
// Token: 0x04000EA5 RID: 3749
[Token(Token = "0x4000EA5")]
private const string MaxName = "Max";
// Token: 0x04000EA6 RID: 3750
[Token(Token = "0x4000EA6")]
private const string LowerBoundActiveName = "lBoundActive";
// Token: 0x04000EA7 RID: 3751
[Token(Token = "0x4000EA7")]
private const string UpperBoundActiveName = "uBoundActive";
// Token: 0x04000EA8 RID: 3752
[Token(Token = "0x4000EA8")]
internal const int StackAllocThreshold = 100;
// Token: 0x02000365 RID: 869
[Token(Token = "0x2000365")]
[Serializable]
internal sealed class TreeSubSet : SortedSet<T>
{
}
// Token: 0x02000366 RID: 870
[Token(Token = "0x2000366")]
[Serializable]
internal sealed class Node
{
// Token: 0x0600173C RID: 5948 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600173C")]
[Address(RVA = "0x3340C10", Offset = "0x333FA10", VA = "0x183340C10")]
public Node(T item, NodeColor color)
{
}
// Token: 0x0600173D RID: 5949 RVA: 0x0000A3F8 File Offset: 0x000085F8
[Token(Token = "0x600173D")]
[Address(RVA = "0x33401F0", Offset = "0x333EFF0", VA = "0x1833401F0")]
public static bool IsNonNullRed(SortedSet<T>.Node node)
{
return default(bool);
}
// Token: 0x0600173E RID: 5950 RVA: 0x0000A410 File Offset: 0x00008610
[Token(Token = "0x600173E")]
[Address(RVA = "0x3340280", Offset = "0x333F080", VA = "0x183340280")]
public static bool IsNullOrBlack(SortedSet<T>.Node node)
{
return default(bool);
}
// Token: 0x170004EC RID: 1260
// (get) Token: 0x0600173F RID: 5951 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06001740 RID: 5952 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170004EC")]
public T Item
{
[Token(Token = "0x600173F")]
[Address(RVA = "0x6808B0", Offset = "0x67F6B0", VA = "0x1806808B0")]
[CompilerGenerated]
get
{
return null;
}
[Token(Token = "0x6001740")]
[Address(RVA = "0x687260", Offset = "0x686060", VA = "0x180687260")]
[CompilerGenerated]
set
{
}
}
// Token: 0x170004ED RID: 1261
// (get) Token: 0x06001741 RID: 5953 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06001742 RID: 5954 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170004ED")]
public SortedSet<T>.Node Left
{
[Token(Token = "0x6001741")]
[Address(RVA = "0x3F6400", Offset = "0x3F5200", VA = "0x1803F6400")]
[CompilerGenerated]
get
{
return null;
}
[Token(Token = "0x6001742")]
[Address(RVA = "0x460F90", Offset = "0x45FD90", VA = "0x180460F90")]
[CompilerGenerated]
set
{
}
}
// Token: 0x170004EE RID: 1262
// (get) Token: 0x06001743 RID: 5955 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06001744 RID: 5956 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170004EE")]
public SortedSet<T>.Node Right
{
[Token(Token = "0x6001743")]
[Address(RVA = "0x3F63E0", Offset = "0x3F51E0", VA = "0x1803F63E0")]
[CompilerGenerated]
get
{
return null;
}
[Token(Token = "0x6001744")]
[Address(RVA = "0x409C60", Offset = "0x408A60", VA = "0x180409C60")]
[CompilerGenerated]
set
{
}
}
// Token: 0x170004EF RID: 1263
// (get) Token: 0x06001745 RID: 5957 RVA: 0x0000A428 File Offset: 0x00008628
// (set) Token: 0x06001746 RID: 5958 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170004EF")]
public NodeColor Color
{
[Token(Token = "0x6001745")]
[Address(RVA = "0x4364F0", Offset = "0x4352F0", VA = "0x1804364F0")]
[CompilerGenerated]
get
{
return NodeColor.Black;
}
[Token(Token = "0x6001746")]
[Address(RVA = "0x436790", Offset = "0x435590", VA = "0x180436790")]
[CompilerGenerated]
set
{
}
}
// Token: 0x170004F0 RID: 1264
// (get) Token: 0x06001747 RID: 5959 RVA: 0x0000A440 File Offset: 0x00008640
[Token(Token = "0x170004F0")]
public bool IsBlack
{
[Token(Token = "0x6001747")]
[Address(RVA = "0x3340E60", Offset = "0x333FC60", VA = "0x183340E60")]
get
{
return default(bool);
}
}
// Token: 0x170004F1 RID: 1265
// (get) Token: 0x06001748 RID: 5960 RVA: 0x0000A458 File Offset: 0x00008658
[Token(Token = "0x170004F1")]
public bool IsRed
{
[Token(Token = "0x6001748")]
[Address(RVA = "0x3340E90", Offset = "0x333FC90", VA = "0x183340E90")]
get
{
return default(bool);
}
}
// Token: 0x170004F2 RID: 1266
// (get) Token: 0x06001749 RID: 5961 RVA: 0x0000A470 File Offset: 0x00008670
[Token(Token = "0x170004F2")]
public bool Is2Node
{
[Token(Token = "0x6001749")]
[Address(RVA = "0x3340D20", Offset = "0x333FB20", VA = "0x183340D20")]
get
{
return default(bool);
}
}
// Token: 0x170004F3 RID: 1267
// (get) Token: 0x0600174A RID: 5962 RVA: 0x0000A488 File Offset: 0x00008688
[Token(Token = "0x170004F3")]
public bool Is4Node
{
[Token(Token = "0x600174A")]
[Address(RVA = "0x3340DD0", Offset = "0x333FBD0", VA = "0x183340DD0")]
get
{
return default(bool);
}
}
// Token: 0x0600174B RID: 5963 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600174B")]
[Address(RVA = "0x2AFEA40", Offset = "0x2AFD840", VA = "0x182AFEA40")]
public void ColorBlack()
{
}
// Token: 0x0600174C RID: 5964 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600174C")]
[Address(RVA = "0x333FCB0", Offset = "0x333EAB0", VA = "0x18333FCB0")]
public void ColorRed()
{
}
// Token: 0x0600174D RID: 5965 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600174D")]
[Address(RVA = "0x333FCE0", Offset = "0x333EAE0", VA = "0x18333FCE0")]
public SortedSet<T>.Node DeepClone(int count)
{
return null;
}
// Token: 0x0600174E RID: 5966 RVA: 0x0000A4A0 File Offset: 0x000086A0
[Token(Token = "0x600174E")]
[Address(RVA = "0x33400D0", Offset = "0x333EED0", VA = "0x1833400D0")]
public TreeRotation GetRotation(SortedSet<T>.Node current, SortedSet<T>.Node sibling)
{
return TreeRotation.Left;
}
// Token: 0x0600174F RID: 5967 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600174F")]
[Address(RVA = "0x3340180", Offset = "0x333EF80", VA = "0x183340180")]
public SortedSet<T>.Node GetSibling(SortedSet<T>.Node node)
{
return null;
}
// Token: 0x06001750 RID: 5968 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001750")]
[Address(RVA = "0x33409B0", Offset = "0x333F7B0", VA = "0x1833409B0")]
public SortedSet<T>.Node ShallowClone()
{
return null;
}
// Token: 0x06001751 RID: 5969 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001751")]
[Address(RVA = "0x3340B60", Offset = "0x333F960", VA = "0x183340B60")]
public void Split4Node()
{
}
// Token: 0x06001752 RID: 5970 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001752")]
[Address(RVA = "0x3340800", Offset = "0x333F600", VA = "0x183340800")]
public SortedSet<T>.Node Rotate(TreeRotation rotation)
{
return null;
}
// Token: 0x06001753 RID: 5971 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001753")]
[Address(RVA = "0x3340570", Offset = "0x333F370", VA = "0x183340570")]
public SortedSet<T>.Node RotateLeft()
{
return null;
}
// Token: 0x06001754 RID: 5972 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001754")]
[Address(RVA = "0x3340440", Offset = "0x333F240", VA = "0x183340440")]
public SortedSet<T>.Node RotateLeftRight()
{
return null;
}
// Token: 0x06001755 RID: 5973 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001755")]
[Address(RVA = "0x3340750", Offset = "0x333F550", VA = "0x183340750")]
public SortedSet<T>.Node RotateRight()
{
return null;
}
// Token: 0x06001756 RID: 5974 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001756")]
[Address(RVA = "0x3340620", Offset = "0x333F420", VA = "0x183340620")]
public SortedSet<T>.Node RotateRightLeft()
{
return null;
}
// Token: 0x06001757 RID: 5975 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001757")]
[Address(RVA = "0x3340310", Offset = "0x333F110", VA = "0x183340310")]
public void Merge2Nodes()
{
}
// Token: 0x06001758 RID: 5976 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001758")]
[Address(RVA = "0x33403C0", Offset = "0x333F1C0", VA = "0x1833403C0")]
public void ReplaceChild(SortedSet<T>.Node child, SortedSet<T>.Node newChild)
{
}
}
/// <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</summary>
/// <typeparam name="T" />
// Token: 0x02000367 RID: 871
[Token(Token = "0x2000367")]
[Serializable]
public struct Enumerator : IEnumerator<T>, IDisposable, IEnumerator, ISerializable, IDeserializationCallback
{
// Token: 0x06001759 RID: 5977 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001759")]
[Address(RVA = "0x333F4D0", Offset = "0x333E2D0", VA = "0x18333F4D0")]
internal Enumerator(SortedSet<T> set)
{
}
// Token: 0x0600175A RID: 5978 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600175A")]
[Address(RVA = "0x333F530", Offset = "0x333E330", VA = "0x18333F530")]
internal Enumerator(SortedSet<T> set, bool reverse)
{
}
/// <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and returns the data needed to serialize the <see cref="T:System.Collections.Generic.SortedSet`1" /> instance.</summary>
/// <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information required to serialize the <see cref="T:System.Collections.Generic.SortedSet`1" /> instance.</param>
/// <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.SortedSet`1" /> instance.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="info" /> is <see langword="null" />.</exception>
// Token: 0x0600175B RID: 5979 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600175B")]
[Address(RVA = "0x333EE00", Offset = "0x333DC00", VA = "0x18333EE00", Slot = "9")]
void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and raises the deserialization event when the deserialization is complete.</summary>
/// <param name="sender">The source of the deserialization event.</param>
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object associated with the current <see cref="T:System.Collections.Generic.SortedSet`1" /> instance is invalid.</exception>
// Token: 0x0600175C RID: 5980 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600175C")]
[Address(RVA = "0x333ED60", Offset = "0x333DB60", VA = "0x18333ED60", Slot = "10")]
void IDeserializationCallback.OnDeserialization(object sender)
{
}
// Token: 0x0600175D RID: 5981 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600175D")]
[Address(RVA = "0x333BF20", Offset = "0x333AD20", VA = "0x18333BF20")]
private void Initialize()
{
}
/// <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.SortedSet`1" /> collection.</summary>
/// <returns>
/// <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
// Token: 0x0600175E RID: 5982 RVA: 0x0000A4B8 File Offset: 0x000086B8
[Token(Token = "0x600175E")]
[Address(RVA = "0x333D560", Offset = "0x333C360", VA = "0x18333D560", Slot = "6")]
public bool MoveNext()
{
return default(bool);
}
/// <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.SortedSet`1.Enumerator" />.</summary>
// Token: 0x0600175F RID: 5983 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600175F")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080", Slot = "5")]
public void Dispose()
{
}
/// <summary>Gets the element at the current position of the enumerator.</summary>
/// <returns>The element in the collection at the current position of the enumerator.</returns>
// Token: 0x170004F4 RID: 1268
// (get) Token: 0x06001760 RID: 5984 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004F4")]
public T Current
{
[Token(Token = "0x6001760")]
[Address(RVA = "0x333F940", Offset = "0x333E740", VA = "0x18333F940", Slot = "4")]
get
{
return null;
}
}
/// <summary>Gets the element at the current position of the enumerator.</summary>
/// <returns>The element in the collection at the current position of the enumerator.</returns>
/// <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
// Token: 0x170004F5 RID: 1269
// (get) Token: 0x06001761 RID: 5985 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004F5")]
object IEnumerator.Current
{
[Token(Token = "0x6001761")]
[Address(RVA = "0x333EAD0", Offset = "0x333D8D0", VA = "0x18333EAD0", Slot = "7")]
get
{
return null;
}
}
// Token: 0x170004F6 RID: 1270
// (get) Token: 0x06001762 RID: 5986 RVA: 0x0000A4D0 File Offset: 0x000086D0
[Token(Token = "0x170004F6")]
internal bool NotStartedOrEnded
{
[Token(Token = "0x6001762")]
[Address(RVA = "0x2B26A40", Offset = "0x2B25840", VA = "0x182B26A40")]
get
{
return default(bool);
}
}
// Token: 0x06001763 RID: 5987 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001763")]
[Address(RVA = "0x333DCE0", Offset = "0x333CAE0", VA = "0x18333DCE0")]
internal void Reset()
{
}
/// <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
// Token: 0x06001764 RID: 5988 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001764")]
[Address(RVA = "0x333E3C0", Offset = "0x333D1C0", VA = "0x18333E3C0", Slot = "8")]
void IEnumerator.Reset()
{
}
// Token: 0x04000EAD RID: 3757
[Token(Token = "0x4000EAD")]
private static readonly SortedSet<T>.Node s_dummyNode;
// Token: 0x04000EAE RID: 3758
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000EAE")]
private SortedSet<T> _tree;
// Token: 0x04000EAF RID: 3759
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000EAF")]
private int _version;
// Token: 0x04000EB0 RID: 3760
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000EB0")]
private Stack<SortedSet<T>.Node> _stack;
// Token: 0x04000EB1 RID: 3761
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000EB1")]
private SortedSet<T>.Node _current;
// Token: 0x04000EB2 RID: 3762
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000EB2")]
private bool _reverse;
}
}
}
+328
View File
@@ -0,0 +1,328 @@
using System;
using System.Diagnostics;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
/// <summary>Represents a variable size last-in-first-out (LIFO) collection of instances of the same specified type.</summary>
/// <typeparam name="T">Specifies the type of elements in the stack.</typeparam>
// Token: 0x0200036E RID: 878
[Token(Token = "0x200036E")]
[DebuggerTypeProxy(typeof(StackDebugView<>))]
[DebuggerDisplay("Count = {Count}")]
[Serializable]
public class Stack<T> : IEnumerable<T>, IEnumerable, ICollection, IReadOnlyCollection<T>
{
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Stack`1" /> class that is empty and has the default initial capacity.</summary>
// Token: 0x0600176F RID: 5999 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600176F")]
[Address(RVA = "0x28EB280", Offset = "0x28EA080", VA = "0x1828EB280")]
public Stack()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Stack`1" /> class that is empty and has the specified initial capacity or the default initial capacity, whichever is greater.</summary>
/// <param name="capacity">The initial number of elements that the <see cref="T:System.Collections.Generic.Stack`1" /> can contain.</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="capacity" /> is less than zero.</exception>
// Token: 0x06001770 RID: 6000 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001770")]
[Address(RVA = "0x3211250", Offset = "0x3210050", VA = "0x183211250")]
public Stack(int capacity)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Stack`1" /> class that contains elements copied from the specified collection and has sufficient capacity to accommodate the number of elements copied.</summary>
/// <param name="collection">The collection to copy elements from.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="collection" /> is <see langword="null" />.</exception>
// Token: 0x06001771 RID: 6001 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001771")]
[Address(RVA = "0x32114A0", Offset = "0x32102A0", VA = "0x1832114A0")]
public Stack(IEnumerable<T> collection)
{
}
/// <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.Stack`1" />.</summary>
/// <returns>The number of elements contained in the <see cref="T:System.Collections.Generic.Stack`1" />.</returns>
// Token: 0x170004F7 RID: 1271
// (get) Token: 0x06001772 RID: 6002 RVA: 0x0000A518 File Offset: 0x00008718
[Token(Token = "0x170004F7")]
public int Count
{
[Token(Token = "0x6001772")]
[Address(RVA = "0x40B720", Offset = "0x40A520", VA = "0x18040B720", Slot = "10")]
get
{
return 0;
}
}
/// <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
/// <returns>
/// <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />. In the default implementation of <see cref="T:System.Collections.Generic.Stack`1" />, this property always returns <see langword="false" />.</returns>
// Token: 0x170004F8 RID: 1272
// (get) Token: 0x06001773 RID: 6003 RVA: 0x0000A530 File Offset: 0x00008730
[Token(Token = "0x170004F8")]
bool ICollection.IsSynchronized
{
[Token(Token = "0x6001773")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "9")]
get
{
return default(bool);
}
}
/// <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
/// <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. In the default implementation of <see cref="T:System.Collections.Generic.Stack`1" />, this property always returns the current instance.</returns>
// Token: 0x170004F9 RID: 1273
// (get) Token: 0x06001774 RID: 6004 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004F9")]
object ICollection.SyncRoot
{
[Token(Token = "0x6001774")]
[Address(RVA = "0x32108B0", Offset = "0x320F6B0", VA = "0x1832108B0", Slot = "8")]
get
{
return null;
}
}
/// <summary>Removes all objects from the <see cref="T:System.Collections.Generic.Stack`1" />.</summary>
// Token: 0x06001775 RID: 6005 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001775")]
[Address(RVA = "0x2549D50", Offset = "0x2548B50", VA = "0x182549D50")]
public void Clear()
{
}
/// <summary>Determines whether an element is in the <see cref="T:System.Collections.Generic.Stack`1" />.</summary>
/// <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.Stack`1" />. The value can be <see langword="null" /> for reference types.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.Stack`1" />; otherwise, <see langword="false" />.</returns>
// Token: 0x06001776 RID: 6006 RVA: 0x0000A548 File Offset: 0x00008748
[Token(Token = "0x6001776")]
[Address(RVA = "0x320E050", Offset = "0x320CE50", VA = "0x18320E050")]
public bool Contains(T item)
{
return default(bool);
}
/// <summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> 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 <see cref="T:System.Collections.ICollection" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
/// <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="arrayIndex" /> is less than zero.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="array" /> is multidimensional.
/// -or-
/// <paramref name="array" /> does not have zero-based indexing.
/// -or-
/// The number of elements in the source <see cref="T:System.Collections.ICollection" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.
/// -or-
/// The type of the source <see cref="T:System.Collections.ICollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
// Token: 0x06001777 RID: 6007 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001777")]
[Address(RVA = "0x32102E0", Offset = "0x320F0E0", VA = "0x1832102E0", Slot = "6")]
void ICollection.CopyTo(Array array, int arrayIndex)
{
}
/// <summary>Returns an enumerator for the <see cref="T:System.Collections.Generic.Stack`1" />.</summary>
/// <returns>An <see cref="T:System.Collections.Generic.Stack`1.Enumerator" /> for the <see cref="T:System.Collections.Generic.Stack`1" />.</returns>
// Token: 0x06001778 RID: 6008 RVA: 0x0000A560 File Offset: 0x00008760
[Token(Token = "0x6001778")]
[Address(RVA = "0x320E140", Offset = "0x320CF40", VA = "0x18320E140")]
public Stack<T>.Enumerator GetEnumerator()
{
return default(Stack<T>.Enumerator);
}
// Token: 0x06001779 RID: 6009 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001779")]
[Address(RVA = "0x320EEA0", Offset = "0x320DCA0", VA = "0x18320EEA0", Slot = "4")]
IEnumerator<T> IEnumerable<T>.GetEnumerator()
{
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: 0x0600177A RID: 6010 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600177A")]
[Address(RVA = "0x320EEA0", Offset = "0x320DCA0", VA = "0x18320EEA0", Slot = "5")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
/// <summary>Returns the object at the top of the <see cref="T:System.Collections.Generic.Stack`1" /> without removing it.</summary>
/// <returns>The object at the top of the <see cref="T:System.Collections.Generic.Stack`1" />.</returns>
/// <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Stack`1" /> is empty.</exception>
// Token: 0x0600177B RID: 6011 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600177B")]
[Address(RVA = "0x320E4E0", Offset = "0x320D2E0", VA = "0x18320E4E0")]
public T Peek()
{
return null;
}
/// <summary>Removes and returns the object at the top of the <see cref="T:System.Collections.Generic.Stack`1" />.</summary>
/// <returns>The object removed from the top of the <see cref="T:System.Collections.Generic.Stack`1" />.</returns>
/// <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Stack`1" /> is empty.</exception>
// Token: 0x0600177C RID: 6012 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600177C")]
[Address(RVA = "0x320E8B0", Offset = "0x320D6B0", VA = "0x18320E8B0")]
public T Pop()
{
return null;
}
/// <summary>Inserts an object at the top of the <see cref="T:System.Collections.Generic.Stack`1" />.</summary>
/// <param name="item">The object to push onto the <see cref="T:System.Collections.Generic.Stack`1" />. The value can be <see langword="null" /> for reference types.</param>
// Token: 0x0600177D RID: 6013 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600177D")]
[Address(RVA = "0x320EC30", Offset = "0x320DA30", VA = "0x18320EC30")]
public void Push(T item)
{
}
// Token: 0x0600177E RID: 6014 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600177E")]
[Address(RVA = "0x3210980", Offset = "0x320F780", VA = "0x183210980")]
private void ThrowForEmptyStack()
{
}
// Token: 0x04000EC1 RID: 3777
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000EC1")]
private T[] _array;
// Token: 0x04000EC2 RID: 3778
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000EC2")]
private int _size;
// Token: 0x04000EC3 RID: 3779
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000EC3")]
private int _version;
// Token: 0x04000EC4 RID: 3780
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000EC4")]
[NonSerialized]
private object _syncRoot;
// Token: 0x04000EC5 RID: 3781
[Token(Token = "0x4000EC5")]
private const int DefaultCapacity = 4;
/// <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.Stack`1" />.</summary>
/// <typeparam name="T" />
// Token: 0x0200036F RID: 879
[Token(Token = "0x200036F")]
[Serializable]
public struct Enumerator : IEnumerator<T>, IDisposable, IEnumerator
{
// Token: 0x0600177F RID: 6015 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600177F")]
[Address(RVA = "0x3202FE0", Offset = "0x3201DE0", VA = "0x183202FE0")]
internal Enumerator(Stack<T> stack)
{
}
/// <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.Stack`1.Enumerator" />.</summary>
// Token: 0x06001780 RID: 6016 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001780")]
[Address(RVA = "0x3202CD0", Offset = "0x3201AD0", VA = "0x183202CD0", Slot = "5")]
public void Dispose()
{
}
/// <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.Stack`1" />.</summary>
/// <returns>
/// <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
// Token: 0x06001781 RID: 6017 RVA: 0x0000A578 File Offset: 0x00008778
[Token(Token = "0x6001781")]
[Address(RVA = "0x333CEF0", Offset = "0x333BCF0", VA = "0x18333CEF0", Slot = "6")]
public bool MoveNext()
{
return default(bool);
}
/// <summary>Gets the element at the current position of the enumerator.</summary>
/// <returns>The element in the <see cref="T:System.Collections.Generic.Stack`1" /> at the current position of the enumerator.</returns>
/// <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
// Token: 0x170004FA RID: 1274
// (get) Token: 0x06001782 RID: 6018 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004FA")]
public T Current
{
[Token(Token = "0x6001782")]
[Address(RVA = "0x333FC70", Offset = "0x333EA70", VA = "0x18333FC70", Slot = "4")]
get
{
return null;
}
}
// Token: 0x06001783 RID: 6019 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001783")]
[Address(RVA = "0x333F140", Offset = "0x333DF40", VA = "0x18333F140")]
private void ThrowEnumerationNotStartedOrEnded()
{
}
/// <summary>Gets the element at the current position of the enumerator.</summary>
/// <returns>The element in the collection at the current position of the enumerator.</returns>
/// <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
// Token: 0x170004FB RID: 1275
// (get) Token: 0x06001784 RID: 6020 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004FB")]
object IEnumerator.Current
{
[Token(Token = "0x6001784")]
[Address(RVA = "0x333E7F0", Offset = "0x333D5F0", VA = "0x18333E7F0", Slot = "7")]
get
{
return null;
}
}
/// <summary>Sets the enumerator to its initial position, which is before the first element in the collection. This class cannot be inherited.</summary>
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
// Token: 0x06001785 RID: 6021 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001785")]
[Address(RVA = "0x333E330", Offset = "0x333D130", VA = "0x18333E330", Slot = "8")]
void IEnumerator.Reset()
{
}
// Token: 0x04000EC6 RID: 3782
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000EC6")]
private readonly Stack<T> _stack;
// Token: 0x04000EC7 RID: 3783
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000EC7")]
private readonly int _version;
// Token: 0x04000EC8 RID: 3784
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000EC8")]
private int _index;
// Token: 0x04000EC9 RID: 3785
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000EC9")]
private T _currentElement;
}
}
}
@@ -0,0 +1,11 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
// Token: 0x02000370 RID: 880
[Token(Token = "0x2000370")]
internal sealed class StackDebugView<T>
{
}
}
@@ -0,0 +1,23 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
// Token: 0x0200036D RID: 877
[Token(Token = "0x200036D")]
internal enum TreeRotation : byte
{
// Token: 0x04000EBD RID: 3773
[Token(Token = "0x4000EBD")]
Left,
// Token: 0x04000EBE RID: 3774
[Token(Token = "0x4000EBE")]
LeftRight,
// Token: 0x04000EBF RID: 3775
[Token(Token = "0x4000EBF")]
Right,
// Token: 0x04000EC0 RID: 3776
[Token(Token = "0x4000EC0")]
RightLeft
}
}
+41
View File
@@ -0,0 +1,41 @@
using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
// Token: 0x0200035D RID: 861
[Token(Token = "0x200035D")]
[Serializable]
internal sealed class TreeSet<T> : SortedSet<T>
{
// Token: 0x060016A1 RID: 5793 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016A1")]
[Address(RVA = "0x118F680", Offset = "0x118E480", VA = "0x18118F680")]
public TreeSet()
{
}
// Token: 0x060016A2 RID: 5794 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016A2")]
[Address(RVA = "0x3211DB0", Offset = "0x3210BB0", VA = "0x183211DB0")]
public TreeSet(IComparer<T> comparer)
{
}
// Token: 0x060016A3 RID: 5795 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016A3")]
[Address(RVA = "0x2917AD0", Offset = "0x29168D0", VA = "0x182917AD0")]
public TreeSet(SerializationInfo siInfo, StreamingContext context)
{
}
// Token: 0x060016A4 RID: 5796 RVA: 0x00009FA8 File Offset: 0x000081A8
[Token(Token = "0x60016A4")]
[Address(RVA = "0x3211C10", Offset = "0x3210A10", VA = "0x183211C10", Slot = "26")]
internal override bool AddIfNotPresent(T item)
{
return default(bool);
}
}
}
@@ -0,0 +1,10 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
// Token: 0x0200036C RID: 876
// (Invoke) Token: 0x0600176C RID: 5996
[Token(Token = "0x200036C")]
internal delegate bool TreeWalkPredicate<T>(SortedSet<T>.Node node);
}
@@ -0,0 +1,103 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Specialized
{
/// <summary>Provides a simple structure that stores Boolean values and small integers in 32 bits of memory.</summary>
// Token: 0x02000331 RID: 817
[Token(Token = "0x2000331")]
public struct BitVector32
{
/// <summary>Gets or sets the state of the bit flag indicated by the specified mask.</summary>
/// <param name="bit">A mask that indicates the bit to get or set.</param>
/// <returns>
/// <see langword="true" /> if the specified bit flag is on (1); otherwise, <see langword="false" />.</returns>
// Token: 0x1700044B RID: 1099
[Token(Token = "0x1700044B")]
public bool this[int bit]
{
[Token(Token = "0x6001528")]
[Address(RVA = "0x4953D0", Offset = "0x4941D0", VA = "0x1804953D0")]
get
{
return default(bool);
}
[Token(Token = "0x6001529")]
[Address(RVA = "0x4953F0", Offset = "0x4941F0", VA = "0x1804953F0")]
set
{
}
}
/// <summary>Creates the first mask in a series of masks that can be used to retrieve individual bits in a <see cref="T:System.Collections.Specialized.BitVector32" /> that is set up as bit flags.</summary>
/// <returns>A mask that isolates the first bit flag in the <see cref="T:System.Collections.Specialized.BitVector32" />.</returns>
// Token: 0x0600152A RID: 5418 RVA: 0x000096D8 File Offset: 0x000078D8
[Token(Token = "0x600152A")]
[Address(RVA = "0x495090", Offset = "0x493E90", VA = "0x180495090")]
public static int CreateMask()
{
return 0;
}
/// <summary>Creates an additional mask following the specified mask in a series of masks that can be used to retrieve individual bits in a <see cref="T:System.Collections.Specialized.BitVector32" /> that is set up as bit flags.</summary>
/// <param name="previous">The mask that indicates the previous bit flag.</param>
/// <returns>A mask that isolates the bit flag following the one that <paramref name="previous" /> points to in <see cref="T:System.Collections.Specialized.BitVector32" />.</returns>
/// <exception cref="T:System.InvalidOperationException">
/// <paramref name="previous" /> indicates the last bit flag in the <see cref="T:System.Collections.Specialized.BitVector32" />.</exception>
// Token: 0x0600152B RID: 5419 RVA: 0x000096F0 File Offset: 0x000078F0
[Token(Token = "0x600152B")]
[Address(RVA = "0x4950C0", Offset = "0x493EC0", VA = "0x1804950C0")]
public static int CreateMask(int previous)
{
return 0;
}
/// <summary>Determines whether the specified object is equal to the <see cref="T:System.Collections.Specialized.BitVector32" />.</summary>
/// <param name="o">The object to compare with the current <see cref="T:System.Collections.Specialized.BitVector32" />.</param>
/// <returns>
/// <see langword="true" /> if the specified object is equal to the <see cref="T:System.Collections.Specialized.BitVector32" />; otherwise, <see langword="false" />.</returns>
// Token: 0x0600152C RID: 5420 RVA: 0x00009708 File Offset: 0x00007908
[Token(Token = "0x600152C")]
[Address(RVA = "0x495150", Offset = "0x493F50", VA = "0x180495150", Slot = "0")]
public override bool Equals(object o)
{
return default(bool);
}
/// <summary>Serves as a hash function for the <see cref="T:System.Collections.Specialized.BitVector32" />.</summary>
/// <returns>A hash code for the <see cref="T:System.Collections.Specialized.BitVector32" />.</returns>
// Token: 0x0600152D RID: 5421 RVA: 0x00009720 File Offset: 0x00007920
[Token(Token = "0x600152D")]
[Address(RVA = "0x4951D0", Offset = "0x493FD0", VA = "0x1804951D0", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Returns a string that represents the specified <see cref="T:System.Collections.Specialized.BitVector32" />.</summary>
/// <param name="value">The <see cref="T:System.Collections.Specialized.BitVector32" /> to represent.</param>
/// <returns>A string that represents the specified <see cref="T:System.Collections.Specialized.BitVector32" />.</returns>
// Token: 0x0600152E RID: 5422 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600152E")]
[Address(RVA = "0x495230", Offset = "0x494030", VA = "0x180495230")]
public static string ToString(BitVector32 value)
{
return null;
}
/// <summary>Returns a string that represents the current <see cref="T:System.Collections.Specialized.BitVector32" />.</summary>
/// <returns>A string that represents the current <see cref="T:System.Collections.Specialized.BitVector32" />.</returns>
// Token: 0x0600152F RID: 5423 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600152F")]
[Address(RVA = "0x495300", Offset = "0x494100", VA = "0x180495300", Slot = "3")]
public override string ToString()
{
return null;
}
// Token: 0x04000E0E RID: 3598
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E0E")]
private uint data;
}
}
@@ -0,0 +1,48 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Specialized
{
// Token: 0x02000332 RID: 818
[Token(Token = "0x2000332")]
internal class CaseSensitiveStringDictionary : StringDictionary
{
// Token: 0x06001530 RID: 5424 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001530")]
[Address(RVA = "0x495E90", Offset = "0x494C90", VA = "0x180495E90")]
public CaseSensitiveStringDictionary()
{
}
// Token: 0x1700044C RID: 1100
[Token(Token = "0x1700044C")]
public override string this[string key]
{
[Token(Token = "0x6001531")]
[Address(RVA = "0x495EF0", Offset = "0x494CF0", VA = "0x180495EF0", Slot = "5")]
get
{
return null;
}
[Token(Token = "0x6001532")]
[Address(RVA = "0x495FB0", Offset = "0x494DB0", VA = "0x180495FB0", Slot = "6")]
set
{
}
}
// Token: 0x06001533 RID: 5427 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001533")]
[Address(RVA = "0x495D60", Offset = "0x494B60", VA = "0x180495D60", Slot = "8")]
public override void Add(string key, string value)
{
}
// Token: 0x06001534 RID: 5428 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001534")]
[Address(RVA = "0x495E00", Offset = "0x494C00", VA = "0x180495E00", Slot = "10")]
public override void Remove(string key)
{
}
}
}
@@ -0,0 +1,104 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Specialized
{
// Token: 0x0200033C RID: 828
[Token(Token = "0x200033C")]
[Serializable]
internal class CompatibleComparer : IEqualityComparer
{
// Token: 0x0600158A RID: 5514 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600158A")]
[Address(RVA = "0x4089A0", Offset = "0x4077A0", VA = "0x1804089A0")]
internal CompatibleComparer(IComparer comparer, IHashCodeProvider hashCodeProvider)
{
}
// Token: 0x0600158B RID: 5515 RVA: 0x00009900 File Offset: 0x00007B00
[Token(Token = "0x600158B")]
[Address(RVA = "0x497840", Offset = "0x496640", VA = "0x180497840", Slot = "4")]
public bool Equals(object a, object b)
{
return default(bool);
}
// Token: 0x0600158C RID: 5516 RVA: 0x00009918 File Offset: 0x00007B18
[Token(Token = "0x600158C")]
[Address(RVA = "0x497950", Offset = "0x496750", VA = "0x180497950", Slot = "5")]
public int GetHashCode(object obj)
{
return 0;
}
// Token: 0x1700046B RID: 1131
// (get) Token: 0x0600158D RID: 5517 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700046B")]
public IComparer Comparer
{
[Token(Token = "0x600158D")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
// Token: 0x1700046C RID: 1132
// (get) Token: 0x0600158E RID: 5518 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700046C")]
public IHashCodeProvider HashCodeProvider
{
[Token(Token = "0x600158E")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
get
{
return null;
}
}
// Token: 0x1700046D RID: 1133
// (get) Token: 0x0600158F RID: 5519 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700046D")]
public static IComparer DefaultComparer
{
[Token(Token = "0x600158F")]
[Address(RVA = "0x497A00", Offset = "0x496800", VA = "0x180497A00")]
get
{
return null;
}
}
// Token: 0x1700046E RID: 1134
// (get) Token: 0x06001590 RID: 5520 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700046E")]
public static IHashCodeProvider DefaultHashCodeProvider
{
[Token(Token = "0x6001590")]
[Address(RVA = "0x497AC0", Offset = "0x4968C0", VA = "0x180497AC0")]
get
{
return null;
}
}
// Token: 0x04000E33 RID: 3635
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000E33")]
private IComparer _comparer;
// Token: 0x04000E34 RID: 3636
[Token(Token = "0x4000E34")]
private static IComparer defaultComparer;
// Token: 0x04000E35 RID: 3637
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000E35")]
private IHashCodeProvider _hcp;
// Token: 0x04000E36 RID: 3638
[Token(Token = "0x4000E36")]
private static IHashCodeProvider defaultHashProvider;
}
}
@@ -0,0 +1,277 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Specialized
{
/// <summary>Implements <see langword="IDictionary" /> by using a <see cref="T:System.Collections.Specialized.ListDictionary" /> while the collection is small, and then switching to a <see cref="T:System.Collections.Hashtable" /> when the collection gets large.</summary>
// Token: 0x02000333 RID: 819
[Token(Token = "0x2000333")]
[Serializable]
public class HybridDictionary : IDictionary, ICollection, IEnumerable
{
/// <summary>Creates an empty case-sensitive <see cref="T:System.Collections.Specialized.HybridDictionary" />.</summary>
// Token: 0x06001535 RID: 5429 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001535")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
public HybridDictionary()
{
}
/// <summary>Creates an empty <see cref="T:System.Collections.Specialized.HybridDictionary" /> with the specified case sensitivity.</summary>
/// <param name="caseInsensitive">A Boolean that denotes whether the <see cref="T:System.Collections.Specialized.HybridDictionary" /> is case-insensitive.</param>
// Token: 0x06001536 RID: 5430 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001536")]
[Address(RVA = "0x4A18F0", Offset = "0x4A06F0", VA = "0x1804A18F0")]
public HybridDictionary(bool caseInsensitive)
{
}
/// <summary>Gets or sets the value associated with the specified key.</summary>
/// <param name="key">The key whose value to get or set.</param>
/// <returns>The value associated with the specified key. If the specified key is not found, attempting to get it returns <see langword="null" />, and attempting to set it creates a new entry using the specified key.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x1700044D RID: 1101
[Token(Token = "0x1700044D")]
public object this[object key]
{
[Token(Token = "0x6001537")]
[Address(RVA = "0x4A1950", Offset = "0x4A0750", VA = "0x1804A1950", Slot = "4")]
get
{
return null;
}
[Token(Token = "0x6001538")]
[Address(RVA = "0x4A1D10", Offset = "0x4A0B10", VA = "0x1804A1D10", Slot = "5")]
set
{
}
}
// Token: 0x1700044E RID: 1102
// (get) Token: 0x06001539 RID: 5433 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700044E")]
private ListDictionary List
{
[Token(Token = "0x6001539")]
[Address(RVA = "0x4A1BD0", Offset = "0x4A09D0", VA = "0x1804A1BD0")]
get
{
return null;
}
}
// Token: 0x0600153A RID: 5434 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600153A")]
[Address(RVA = "0x4A0ED0", Offset = "0x49FCD0", VA = "0x1804A0ED0")]
private void ChangeOver()
{
}
/// <summary>Gets the number of key/value pairs contained in the <see cref="T:System.Collections.Specialized.HybridDictionary" />.</summary>
/// <returns>The number of key/value pairs contained in the <see cref="T:System.Collections.Specialized.HybridDictionary" />.
/// Retrieving the value of this property is an O(1) operation.</returns>
// Token: 0x1700044F RID: 1103
// (get) Token: 0x0600153B RID: 5435 RVA: 0x00009738 File Offset: 0x00007938
[Token(Token = "0x1700044F")]
public int Count
{
[Token(Token = "0x600153B")]
[Address(RVA = "0x4A1920", Offset = "0x4A0720", VA = "0x1804A1920", Slot = "16")]
get
{
return 0;
}
}
/// <summary>Gets an <see cref="T:System.Collections.ICollection" /> containing the keys in the <see cref="T:System.Collections.Specialized.HybridDictionary" />.</summary>
/// <returns>An <see cref="T:System.Collections.ICollection" /> containing the keys in the <see cref="T:System.Collections.Specialized.HybridDictionary" />.</returns>
// Token: 0x17000450 RID: 1104
// (get) Token: 0x0600153C RID: 5436 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000450")]
public ICollection Keys
{
[Token(Token = "0x600153C")]
[Address(RVA = "0x4A1B30", Offset = "0x4A0930", VA = "0x1804A1B30", Slot = "6")]
get
{
return null;
}
}
/// <summary>Gets a value indicating whether the <see cref="T:System.Collections.Specialized.HybridDictionary" /> is read-only.</summary>
/// <returns>This property always returns <see langword="false" />.</returns>
// Token: 0x17000451 RID: 1105
// (get) Token: 0x0600153D RID: 5437 RVA: 0x00009750 File Offset: 0x00007950
[Token(Token = "0x17000451")]
public bool IsReadOnly
{
[Token(Token = "0x600153D")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "11")]
get
{
return default(bool);
}
}
/// <summary>Gets a value indicating whether the <see cref="T:System.Collections.Specialized.HybridDictionary" /> has a fixed size.</summary>
/// <returns>This property always returns <see langword="false" />.</returns>
// Token: 0x17000452 RID: 1106
// (get) Token: 0x0600153E RID: 5438 RVA: 0x00009768 File Offset: 0x00007968
[Token(Token = "0x17000452")]
public bool IsFixedSize
{
[Token(Token = "0x600153E")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "12")]
get
{
return default(bool);
}
}
/// <summary>Gets a value indicating whether the <see cref="T:System.Collections.Specialized.HybridDictionary" /> is synchronized (thread safe).</summary>
/// <returns>This property always returns <see langword="false" />.</returns>
// Token: 0x17000453 RID: 1107
// (get) Token: 0x0600153F RID: 5439 RVA: 0x00009780 File Offset: 0x00007980
[Token(Token = "0x17000453")]
public bool IsSynchronized
{
[Token(Token = "0x600153F")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "18")]
get
{
return default(bool);
}
}
/// <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.Specialized.HybridDictionary" />.</summary>
/// <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.Specialized.HybridDictionary" />.</returns>
// Token: 0x17000454 RID: 1108
// (get) Token: 0x06001540 RID: 5440 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000454")]
public object SyncRoot
{
[Token(Token = "0x6001540")]
[Address(RVA = "0x434BD0", Offset = "0x4339D0", VA = "0x180434BD0", Slot = "17")]
get
{
return null;
}
}
/// <summary>Gets an <see cref="T:System.Collections.ICollection" /> containing the values in the <see cref="T:System.Collections.Specialized.HybridDictionary" />.</summary>
/// <returns>An <see cref="T:System.Collections.ICollection" /> containing the values in the <see cref="T:System.Collections.Specialized.HybridDictionary" />.</returns>
// Token: 0x17000455 RID: 1109
// (get) Token: 0x06001541 RID: 5441 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000455")]
public ICollection Values
{
[Token(Token = "0x6001541")]
[Address(RVA = "0x4A1C70", Offset = "0x4A0A70", VA = "0x1804A1C70", Slot = "7")]
get
{
return null;
}
}
/// <summary>Adds an entry with the specified key and value into the <see cref="T:System.Collections.Specialized.HybridDictionary" />.</summary>
/// <param name="key">The key of the entry to add.</param>
/// <param name="value">The value of the entry to add. The value can be <see langword="null" />.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentException">An entry with the same key already exists in the <see cref="T:System.Collections.Specialized.HybridDictionary" />.</exception>
// Token: 0x06001542 RID: 5442 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001542")]
[Address(RVA = "0x4A0D90", Offset = "0x49FB90", VA = "0x1804A0D90", Slot = "9")]
public void Add(object key, object value)
{
}
/// <summary>Removes all entries from the <see cref="T:System.Collections.Specialized.HybridDictionary" />.</summary>
// Token: 0x06001543 RID: 5443 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001543")]
[Address(RVA = "0x4A11A0", Offset = "0x49FFA0", VA = "0x1804A11A0", Slot = "10")]
public void Clear()
{
}
/// <summary>Determines whether the <see cref="T:System.Collections.Specialized.HybridDictionary" /> contains a specific key.</summary>
/// <param name="key">The key to locate in the <see cref="T:System.Collections.Specialized.HybridDictionary" />.</param>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.Collections.Specialized.HybridDictionary" /> contains an entry with the specified key; otherwise, <see langword="false" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x06001544 RID: 5444 RVA: 0x00009798 File Offset: 0x00007998
[Token(Token = "0x6001544")]
[Address(RVA = "0x4A11F0", Offset = "0x49FFF0", VA = "0x1804A11F0", Slot = "8")]
public bool Contains(object key)
{
return default(bool);
}
/// <summary>Copies the <see cref="T:System.Collections.Specialized.HybridDictionary" /> entries to a one-dimensional <see cref="T:System.Array" /> instance at the specified index.</summary>
/// <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the <see cref="T:System.Collections.DictionaryEntry" /> objects copied from <see cref="T:System.Collections.Specialized.HybridDictionary" />. 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>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="array" /> is multidimensional.
/// -or-
/// The number of elements in the source <see cref="T:System.Collections.Specialized.HybridDictionary" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
/// <exception cref="T:System.InvalidCastException">The type of the source <see cref="T:System.Collections.Specialized.HybridDictionary" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
// Token: 0x06001545 RID: 5445 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001545")]
[Address(RVA = "0x4A13A0", Offset = "0x4A01A0", VA = "0x1804A13A0", Slot = "15")]
public void CopyTo(Array array, int index)
{
}
/// <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> that iterates through the <see cref="T:System.Collections.Specialized.HybridDictionary" />.</summary>
/// <returns>An <see cref="T:System.Collections.IDictionaryEnumerator" /> for the <see cref="T:System.Collections.Specialized.HybridDictionary" />.</returns>
// Token: 0x06001546 RID: 5446 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001546")]
[Address(RVA = "0x4A1570", Offset = "0x4A0370", VA = "0x1804A1570", Slot = "13")]
public IDictionaryEnumerator GetEnumerator()
{
return null;
}
/// <summary>Returns an <see cref="T:System.Collections.IEnumerator" /> that iterates through the <see cref="T:System.Collections.Specialized.HybridDictionary" />.</summary>
/// <returns>An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Collections.Specialized.HybridDictionary" />.</returns>
// Token: 0x06001547 RID: 5447 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001547")]
[Address(RVA = "0x4A1820", Offset = "0x4A0620", VA = "0x1804A1820", Slot = "19")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
/// <summary>Removes the entry with the specified key from the <see cref="T:System.Collections.Specialized.HybridDictionary" />.</summary>
/// <param name="key">The key of the entry to remove.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x06001548 RID: 5448 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001548")]
[Address(RVA = "0x4A1640", Offset = "0x4A0440", VA = "0x1804A1640", Slot = "14")]
public void Remove(object key)
{
}
// Token: 0x04000E0F RID: 3599
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000E0F")]
private ListDictionary list;
// Token: 0x04000E10 RID: 3600
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000E10")]
private Hashtable hashtable;
// Token: 0x04000E11 RID: 3601
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000E11")]
private bool caseInsensitive;
}
}
@@ -0,0 +1,537 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Specialized
{
/// <summary>Implements <see langword="IDictionary" /> using a singly linked list. Recommended for collections that typically include fewer than 10 items.</summary>
// Token: 0x02000334 RID: 820
[Token(Token = "0x2000334")]
[Serializable]
public class ListDictionary : IDictionary, ICollection, IEnumerable
{
/// <summary>Creates an empty <see cref="T:System.Collections.Specialized.ListDictionary" /> using the default comparer.</summary>
// Token: 0x06001549 RID: 5449 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001549")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
public ListDictionary()
{
}
/// <summary>Creates an empty <see cref="T:System.Collections.Specialized.ListDictionary" /> using the specified comparer.</summary>
/// <param name="comparer">The <see cref="T:System.Collections.IComparer" /> to use to determine whether two keys are equal.
/// -or-
/// <see langword="null" /> to use the default comparer, which is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />.</param>
// Token: 0x0600154A RID: 5450 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600154A")]
[Address(RVA = "0x4A24B0", Offset = "0x4A12B0", VA = "0x1804A24B0")]
public ListDictionary(IComparer comparer)
{
}
/// <summary>Gets or sets the value associated with the specified key.</summary>
/// <param name="key">The key whose value to get or set.</param>
/// <returns>The value associated with the specified key. If the specified key is not found, attempting to get it returns <see langword="null" />, and attempting to set it creates a new entry using the specified key.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x17000456 RID: 1110
[Token(Token = "0x17000456")]
public object this[object key]
{
[Token(Token = "0x600154B")]
[Address(RVA = "0x4A24E0", Offset = "0x4A12E0", VA = "0x1804A24E0", Slot = "4")]
get
{
return null;
}
[Token(Token = "0x600154C")]
[Address(RVA = "0x4A2760", Offset = "0x4A1560", VA = "0x1804A2760", Slot = "5")]
set
{
}
}
/// <summary>Gets the number of key/value pairs contained in the <see cref="T:System.Collections.Specialized.ListDictionary" />.</summary>
/// <returns>The number of key/value pairs contained in the <see cref="T:System.Collections.Specialized.ListDictionary" />.</returns>
// Token: 0x17000457 RID: 1111
// (get) Token: 0x0600154D RID: 5453 RVA: 0x000097B0 File Offset: 0x000079B0
[Token(Token = "0x17000457")]
public int Count
{
[Token(Token = "0x600154D")]
[Address(RVA = "0x41F5B0", Offset = "0x41E3B0", VA = "0x18041F5B0", Slot = "16")]
get
{
return 0;
}
}
/// <summary>Gets an <see cref="T:System.Collections.ICollection" /> containing the keys in the <see cref="T:System.Collections.Specialized.ListDictionary" />.</summary>
/// <returns>An <see cref="T:System.Collections.ICollection" /> containing the keys in the <see cref="T:System.Collections.Specialized.ListDictionary" />.</returns>
// Token: 0x17000458 RID: 1112
// (get) Token: 0x0600154E RID: 5454 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000458")]
public ICollection Keys
{
[Token(Token = "0x600154E")]
[Address(RVA = "0x4A2630", Offset = "0x4A1430", VA = "0x1804A2630", Slot = "6")]
get
{
return null;
}
}
/// <summary>Gets a value indicating whether the <see cref="T:System.Collections.Specialized.ListDictionary" /> is read-only.</summary>
/// <returns>This property always returns <see langword="false" />.</returns>
// Token: 0x17000459 RID: 1113
// (get) Token: 0x0600154F RID: 5455 RVA: 0x000097C8 File Offset: 0x000079C8
[Token(Token = "0x17000459")]
public bool IsReadOnly
{
[Token(Token = "0x600154F")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "11")]
get
{
return default(bool);
}
}
/// <summary>Gets a value indicating whether the <see cref="T:System.Collections.Specialized.ListDictionary" /> has a fixed size.</summary>
/// <returns>This property always returns <see langword="false" />.</returns>
// Token: 0x1700045A RID: 1114
// (get) Token: 0x06001550 RID: 5456 RVA: 0x000097E0 File Offset: 0x000079E0
[Token(Token = "0x1700045A")]
public bool IsFixedSize
{
[Token(Token = "0x6001550")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "12")]
get
{
return default(bool);
}
}
/// <summary>Gets a value indicating whether the <see cref="T:System.Collections.Specialized.ListDictionary" /> is synchronized (thread safe).</summary>
/// <returns>This property always returns <see langword="false" />.</returns>
// Token: 0x1700045B RID: 1115
// (get) Token: 0x06001551 RID: 5457 RVA: 0x000097F8 File Offset: 0x000079F8
[Token(Token = "0x1700045B")]
public bool IsSynchronized
{
[Token(Token = "0x6001551")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "18")]
get
{
return default(bool);
}
}
/// <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.Specialized.ListDictionary" />.</summary>
/// <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.Specialized.ListDictionary" />.</returns>
// Token: 0x1700045C RID: 1116
// (get) Token: 0x06001552 RID: 5458 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700045C")]
public object SyncRoot
{
[Token(Token = "0x6001552")]
[Address(RVA = "0x4A2690", Offset = "0x4A1490", VA = "0x1804A2690", Slot = "17")]
get
{
return null;
}
}
/// <summary>Gets an <see cref="T:System.Collections.ICollection" /> containing the values in the <see cref="T:System.Collections.Specialized.ListDictionary" />.</summary>
/// <returns>An <see cref="T:System.Collections.ICollection" /> containing the values in the <see cref="T:System.Collections.Specialized.ListDictionary" />.</returns>
// Token: 0x1700045D RID: 1117
// (get) Token: 0x06001553 RID: 5459 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700045D")]
public ICollection Values
{
[Token(Token = "0x6001553")]
[Address(RVA = "0x4A2700", Offset = "0x4A1500", VA = "0x1804A2700", Slot = "7")]
get
{
return null;
}
}
/// <summary>Adds an entry with the specified key and value into the <see cref="T:System.Collections.Specialized.ListDictionary" />.</summary>
/// <param name="key">The key of the entry to add.</param>
/// <param name="value">The value of the entry to add. The value can be <see langword="null" />.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentException">An entry with the same key already exists in the <see cref="T:System.Collections.Specialized.ListDictionary" />.</exception>
// Token: 0x06001554 RID: 5460 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001554")]
[Address(RVA = "0x4A1E50", Offset = "0x4A0C50", VA = "0x1804A1E50", Slot = "9")]
public void Add(object key, object value)
{
}
/// <summary>Removes all entries from the <see cref="T:System.Collections.Specialized.ListDictionary" />.</summary>
// Token: 0x06001555 RID: 5461 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001555")]
[Address(RVA = "0x4A1FF0", Offset = "0x4A0DF0", VA = "0x1804A1FF0", Slot = "10")]
public void Clear()
{
}
/// <summary>Determines whether the <see cref="T:System.Collections.Specialized.ListDictionary" /> contains a specific key.</summary>
/// <param name="key">The key to locate in the <see cref="T:System.Collections.Specialized.ListDictionary" />.</param>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.Collections.Specialized.ListDictionary" /> contains an entry with the specified key; otherwise, <see langword="false" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x06001556 RID: 5462 RVA: 0x00009810 File Offset: 0x00007A10
[Token(Token = "0x6001556")]
[Address(RVA = "0x4A2000", Offset = "0x4A0E00", VA = "0x1804A2000", Slot = "8")]
public bool Contains(object key)
{
return default(bool);
}
/// <summary>Copies the <see cref="T:System.Collections.Specialized.ListDictionary" /> entries to a one-dimensional <see cref="T:System.Array" /> instance at the specified index.</summary>
/// <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the <see cref="T:System.Collections.DictionaryEntry" /> objects copied from <see cref="T:System.Collections.Specialized.ListDictionary" />. 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>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="array" /> is multidimensional.
/// -or-
/// The number of elements in the source <see cref="T:System.Collections.Specialized.ListDictionary" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
/// <exception cref="T:System.InvalidCastException">The type of the source <see cref="T:System.Collections.Specialized.ListDictionary" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
// Token: 0x06001557 RID: 5463 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001557")]
[Address(RVA = "0x4A2110", Offset = "0x4A0F10", VA = "0x1804A2110", Slot = "15")]
public void CopyTo(Array array, int index)
{
}
/// <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> that iterates through the <see cref="T:System.Collections.Specialized.ListDictionary" />.</summary>
/// <returns>An <see cref="T:System.Collections.IDictionaryEnumerator" /> for the <see cref="T:System.Collections.Specialized.ListDictionary" />.</returns>
// Token: 0x06001558 RID: 5464 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001558")]
[Address(RVA = "0x4A22A0", Offset = "0x4A10A0", VA = "0x1804A22A0", Slot = "13")]
public IDictionaryEnumerator GetEnumerator()
{
return null;
}
/// <summary>Returns an <see cref="T:System.Collections.IEnumerator" /> that iterates through the <see cref="T:System.Collections.Specialized.ListDictionary" />.</summary>
/// <returns>An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Collections.Specialized.ListDictionary" />.</returns>
// Token: 0x06001559 RID: 5465 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001559")]
[Address(RVA = "0x4A2440", Offset = "0x4A1240", VA = "0x1804A2440", Slot = "19")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
/// <summary>Removes the entry with the specified key from the <see cref="T:System.Collections.Specialized.ListDictionary" />.</summary>
/// <param name="key">The key of the entry to remove.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x0600155A RID: 5466 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600155A")]
[Address(RVA = "0x4A2310", Offset = "0x4A1110", VA = "0x1804A2310", Slot = "14")]
public void Remove(object key)
{
}
// Token: 0x04000E12 RID: 3602
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000E12")]
private ListDictionary.DictionaryNode head;
// Token: 0x04000E13 RID: 3603
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000E13")]
private int version;
// Token: 0x04000E14 RID: 3604
[FieldOffset(Offset = "0x1C")]
[Token(Token = "0x4000E14")]
private int count;
// Token: 0x04000E15 RID: 3605
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000E15")]
private IComparer comparer;
// Token: 0x04000E16 RID: 3606
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x4000E16")]
[NonSerialized]
private object _syncRoot;
// Token: 0x02000335 RID: 821
[Token(Token = "0x2000335")]
private class NodeEnumerator : IDictionaryEnumerator, IEnumerator
{
// Token: 0x0600155B RID: 5467 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600155B")]
[Address(RVA = "0x4A5530", Offset = "0x4A4330", VA = "0x1804A5530")]
public NodeEnumerator(ListDictionary list)
{
}
// Token: 0x1700045E RID: 1118
// (get) Token: 0x0600155C RID: 5468 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700045E")]
public object Current
{
[Token(Token = "0x600155C")]
[Address(RVA = "0x4A5580", Offset = "0x4A4380", VA = "0x1804A5580", Slot = "8")]
get
{
return null;
}
}
// Token: 0x1700045F RID: 1119
// (get) Token: 0x0600155D RID: 5469 RVA: 0x00009828 File Offset: 0x00007A28
[Token(Token = "0x1700045F")]
public DictionaryEntry Entry
{
[Token(Token = "0x600155D")]
[Address(RVA = "0x4A5660", Offset = "0x4A4460", VA = "0x1804A5660", Slot = "6")]
get
{
return default(DictionaryEntry);
}
}
// Token: 0x17000460 RID: 1120
// (get) Token: 0x0600155E RID: 5470 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000460")]
public object Key
{
[Token(Token = "0x600155E")]
[Address(RVA = "0x4A5700", Offset = "0x4A4500", VA = "0x1804A5700", Slot = "4")]
get
{
return null;
}
}
// Token: 0x17000461 RID: 1121
// (get) Token: 0x0600155F RID: 5471 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000461")]
public object Value
{
[Token(Token = "0x600155F")]
[Address(RVA = "0x4A5780", Offset = "0x4A4580", VA = "0x1804A5780", Slot = "5")]
get
{
return null;
}
}
// Token: 0x06001560 RID: 5472 RVA: 0x00009840 File Offset: 0x00007A40
[Token(Token = "0x6001560")]
[Address(RVA = "0x4A53C0", Offset = "0x4A41C0", VA = "0x1804A53C0", Slot = "7")]
public bool MoveNext()
{
return default(bool);
}
// Token: 0x06001561 RID: 5473 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001561")]
[Address(RVA = "0x4A5490", Offset = "0x4A4290", VA = "0x1804A5490", Slot = "9")]
public void Reset()
{
}
// Token: 0x04000E17 RID: 3607
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000E17")]
private ListDictionary list;
// Token: 0x04000E18 RID: 3608
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000E18")]
private ListDictionary.DictionaryNode current;
// Token: 0x04000E19 RID: 3609
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000E19")]
private int version;
// Token: 0x04000E1A RID: 3610
[FieldOffset(Offset = "0x24")]
[Token(Token = "0x4000E1A")]
private bool start;
}
// Token: 0x02000336 RID: 822
[Token(Token = "0x2000336")]
private class NodeKeyValueCollection : ICollection, IEnumerable
{
// Token: 0x06001562 RID: 5474 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001562")]
[Address(RVA = "0x42C280", Offset = "0x42B080", VA = "0x18042C280")]
public NodeKeyValueCollection(ListDictionary list, bool isKeys)
{
}
// Token: 0x06001563 RID: 5475 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001563")]
[Address(RVA = "0x4A5800", Offset = "0x4A4600", VA = "0x1804A5800", Slot = "4")]
void ICollection.CopyTo(Array array, int index)
{
}
// Token: 0x17000462 RID: 1122
// (get) Token: 0x06001564 RID: 5476 RVA: 0x00009858 File Offset: 0x00007A58
[Token(Token = "0x17000462")]
int ICollection.Count
{
[Token(Token = "0x6001564")]
[Address(RVA = "0x4A5930", Offset = "0x4A4730", VA = "0x1804A5930", Slot = "5")]
get
{
return 0;
}
}
// Token: 0x17000463 RID: 1123
// (get) Token: 0x06001565 RID: 5477 RVA: 0x00009870 File Offset: 0x00007A70
[Token(Token = "0x17000463")]
bool ICollection.IsSynchronized
{
[Token(Token = "0x6001565")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "7")]
get
{
return default(bool);
}
}
// Token: 0x17000464 RID: 1124
// (get) Token: 0x06001566 RID: 5478 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000464")]
object ICollection.SyncRoot
{
[Token(Token = "0x6001566")]
[Address(RVA = "0x4A5970", Offset = "0x4A4770", VA = "0x1804A5970", Slot = "6")]
get
{
return null;
}
}
// Token: 0x06001567 RID: 5479 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001567")]
[Address(RVA = "0x4A5A00", Offset = "0x4A4800", VA = "0x1804A5A00", Slot = "8")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
// Token: 0x04000E1B RID: 3611
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000E1B")]
private ListDictionary list;
// Token: 0x04000E1C RID: 3612
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000E1C")]
private bool isKeys;
// Token: 0x02000337 RID: 823
[Token(Token = "0x2000337")]
private class NodeKeyValueEnumerator : IEnumerator
{
// Token: 0x06001568 RID: 5480 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001568")]
[Address(RVA = "0x4A5C00", Offset = "0x4A4A00", VA = "0x1804A5C00")]
public NodeKeyValueEnumerator(ListDictionary list, bool isKeys)
{
}
// Token: 0x17000465 RID: 1125
// (get) Token: 0x06001569 RID: 5481 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000465")]
public object Current
{
[Token(Token = "0x6001569")]
[Address(RVA = "0x4A5C60", Offset = "0x4A4A60", VA = "0x1804A5C60", Slot = "5")]
get
{
return null;
}
}
// Token: 0x0600156A RID: 5482 RVA: 0x00009888 File Offset: 0x00007A88
[Token(Token = "0x600156A")]
[Address(RVA = "0x4A5A90", Offset = "0x4A4890", VA = "0x1804A5A90", Slot = "4")]
public bool MoveNext()
{
return default(bool);
}
// Token: 0x0600156B RID: 5483 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600156B")]
[Address(RVA = "0x4A5B60", Offset = "0x4A4960", VA = "0x1804A5B60", Slot = "6")]
public void Reset()
{
}
// Token: 0x04000E1D RID: 3613
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000E1D")]
private ListDictionary list;
// Token: 0x04000E1E RID: 3614
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000E1E")]
private ListDictionary.DictionaryNode current;
// Token: 0x04000E1F RID: 3615
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000E1F")]
private int version;
// Token: 0x04000E20 RID: 3616
[FieldOffset(Offset = "0x24")]
[Token(Token = "0x4000E20")]
private bool isKeys;
// Token: 0x04000E21 RID: 3617
[FieldOffset(Offset = "0x25")]
[Token(Token = "0x4000E21")]
private bool start;
}
}
// Token: 0x02000338 RID: 824
[Token(Token = "0x2000338")]
[Serializable]
private class DictionaryNode
{
// Token: 0x0600156C RID: 5484 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600156C")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
public DictionaryNode()
{
}
// Token: 0x04000E22 RID: 3618
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000E22")]
public object key;
// Token: 0x04000E23 RID: 3619
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000E23")]
public object value;
// Token: 0x04000E24 RID: 3620
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000E24")]
public ListDictionary.DictionaryNode next;
}
}
}
@@ -0,0 +1,396 @@
using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Collections.Specialized
{
/// <summary>Provides the <see langword="abstract" /> base class for a collection of associated <see cref="T:System.String" /> keys and <see cref="T:System.Object" /> values that can be accessed either with the key or with the index.</summary>
// Token: 0x02000339 RID: 825
[Token(Token = "0x2000339")]
[Serializable]
public abstract class NameObjectCollectionBase : ICollection, IEnumerable, ISerializable, IDeserializationCallback
{
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> class that is empty.</summary>
// Token: 0x0600156D RID: 5485 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600156D")]
[Address(RVA = "0x4A4440", Offset = "0x4A3240", VA = "0x1804A4440")]
protected NameObjectCollectionBase()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> class that is empty, has the default initial capacity, and uses the specified <see cref="T:System.Collections.IEqualityComparer" /> object.</summary>
/// <param name="equalityComparer">The <see cref="T:System.Collections.IEqualityComparer" /> object to use to determine whether two keys are equal and to generate hash codes for the keys in the collection.</param>
// Token: 0x0600156E RID: 5486 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600156E")]
[Address(RVA = "0x4A4330", Offset = "0x4A3130", VA = "0x1804A4330")]
protected NameObjectCollectionBase(IEqualityComparer equalityComparer)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> class that is empty, has the specified initial capacity, and uses the specified <see cref="T:System.Collections.IEqualityComparer" /> object.</summary>
/// <param name="capacity">The approximate number of entries that the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> object can initially contain.</param>
/// <param name="equalityComparer">The <see cref="T:System.Collections.IEqualityComparer" /> object to use to determine whether two keys are equal and to generate hash codes for the keys in the collection.</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="capacity" /> is less than zero.</exception>
// Token: 0x0600156F RID: 5487 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600156F")]
[Address(RVA = "0x4A42F0", Offset = "0x4A30F0", VA = "0x1804A42F0")]
protected NameObjectCollectionBase(int capacity, IEqualityComparer equalityComparer)
{
}
// Token: 0x06001570 RID: 5488 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001570")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
internal NameObjectCollectionBase(DBNull dummy)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> class that is serializable and uses the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" />.</summary>
/// <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information required to serialize the new <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance.</param>
/// <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains the source and destination of the serialized stream associated with the new <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance.</param>
// Token: 0x06001571 RID: 5489 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001571")]
[Address(RVA = "0x4A42C0", Offset = "0x4A30C0", VA = "0x1804A42C0")]
protected NameObjectCollectionBase(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and returns the data needed to serialize the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance.</summary>
/// <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information required to serialize the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance.</param>
/// <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="info" /> is <see langword="null" />.</exception>
// Token: 0x06001572 RID: 5490 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001572")]
[Address(RVA = "0x4A3170", Offset = "0x4A1F70", VA = "0x1804A3170", Slot = "11")]
public virtual void GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and raises the deserialization event when the deserialization is complete.</summary>
/// <param name="sender">The source of the deserialization event.</param>
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object associated with the current <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance is invalid.</exception>
// Token: 0x06001573 RID: 5491 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001573")]
[Address(RVA = "0x4A37B0", Offset = "0x4A25B0", VA = "0x1804A37B0", Slot = "12")]
public virtual void OnDeserialization(object sender)
{
}
// Token: 0x06001574 RID: 5492 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001574")]
[Address(RVA = "0x4A3D60", Offset = "0x4A2B60", VA = "0x1804A3D60")]
private void Reset()
{
}
// Token: 0x06001575 RID: 5493 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001575")]
[Address(RVA = "0x4A3E00", Offset = "0x4A2C00", VA = "0x1804A3E00")]
private void Reset(int capacity)
{
}
// Token: 0x06001576 RID: 5494 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001576")]
[Address(RVA = "0x4A3030", Offset = "0x4A1E30", VA = "0x1804A3030")]
private NameObjectCollectionBase.NameObjectEntry FindEntry(string key)
{
return null;
}
/// <summary>Gets or sets a value indicating whether the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance is read-only.</summary>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance is read-only; otherwise, <see langword="false" />.</returns>
// Token: 0x17000466 RID: 1126
// (get) Token: 0x06001577 RID: 5495 RVA: 0x000098A0 File Offset: 0x00007AA0
[Token(Token = "0x17000466")]
protected bool IsReadOnly
{
[Token(Token = "0x6001577")]
[Address(RVA = "0x42D5E0", Offset = "0x42C3E0", VA = "0x18042D5E0")]
get
{
return default(bool);
}
}
/// <summary>Adds an entry with the specified key and value into the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance.</summary>
/// <param name="name">The <see cref="T:System.String" /> key of the entry to add. The key can be <see langword="null" />.</param>
/// <param name="value">The <see cref="T:System.Object" /> value of the entry to add. The value can be <see langword="null" />.</param>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
// Token: 0x06001578 RID: 5496 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001578")]
[Address(RVA = "0x4A28D0", Offset = "0x4A16D0", VA = "0x1804A28D0")]
protected void BaseAdd(string name, object value)
{
}
/// <summary>Removes the entries with the specified key from the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance.</summary>
/// <param name="name">The <see cref="T:System.String" /> key of the entries to remove. The key can be <see langword="null" />.</param>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
// Token: 0x06001579 RID: 5497 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001579")]
[Address(RVA = "0x4A2D30", Offset = "0x4A1B30", VA = "0x1804A2D30")]
protected void BaseRemove(string name)
{
}
/// <summary>Gets the value of the first entry with the specified key from the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance.</summary>
/// <param name="name">The <see cref="T:System.String" /> key of the entry to get. The key can be <see langword="null" />.</param>
/// <returns>An <see cref="T:System.Object" /> that represents the value of the first entry with the specified key, if found; otherwise, <see langword="null" />.</returns>
// Token: 0x0600157A RID: 5498 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600157A")]
[Address(RVA = "0x4A2C20", Offset = "0x4A1A20", VA = "0x1804A2C20")]
protected object BaseGet(string name)
{
return null;
}
/// <summary>Sets the value of the first entry with the specified key in the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance, if found; otherwise, adds an entry with the specified key and value into the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance.</summary>
/// <param name="name">The <see cref="T:System.String" /> key of the entry to set. The key can be <see langword="null" />.</param>
/// <param name="value">The <see cref="T:System.Object" /> that represents the new value of the entry to set. The value can be <see langword="null" />.</param>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
// Token: 0x0600157B RID: 5499 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600157B")]
[Address(RVA = "0x4A2F60", Offset = "0x4A1D60", VA = "0x1804A2F60")]
protected void BaseSet(string name, object value)
{
}
/// <summary>Gets the value of the entry at the specified index of the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance.</summary>
/// <param name="index">The zero-based index of the value to get.</param>
/// <returns>An <see cref="T:System.Object" /> that represents the value of the entry at the specified index.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is outside the valid range of indexes for the collection.</exception>
// Token: 0x0600157C RID: 5500 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600157C")]
[Address(RVA = "0x4A2C40", Offset = "0x4A1A40", VA = "0x1804A2C40")]
protected object BaseGet(int index)
{
return null;
}
/// <summary>Gets the key of the entry at the specified index of the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance.</summary>
/// <param name="index">The zero-based index of the key to get.</param>
/// <returns>A <see cref="T:System.String" /> that represents the key of the entry at the specified index.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is outside the valid range of indexes for the collection.</exception>
// Token: 0x0600157D RID: 5501 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600157D")]
[Address(RVA = "0x4A2B30", Offset = "0x4A1930", VA = "0x1804A2B30")]
protected string BaseGetKey(int index)
{
return null;
}
/// <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" />.</summary>
/// <returns>An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance.</returns>
// Token: 0x0600157E RID: 5502 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600157E")]
[Address(RVA = "0x4A3100", Offset = "0x4A1F00", VA = "0x1804A3100", Slot = "13")]
public virtual IEnumerator GetEnumerator()
{
return null;
}
/// <summary>Gets the number of key/value pairs contained in the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance.</summary>
/// <returns>The number of key/value pairs contained in the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance.</returns>
// Token: 0x17000467 RID: 1127
// (get) Token: 0x0600157F RID: 5503 RVA: 0x000098B8 File Offset: 0x00007AB8
[Token(Token = "0x17000467")]
public virtual int Count
{
[Token(Token = "0x600157F")]
[Address(RVA = "0x4A44B0", Offset = "0x4A32B0", VA = "0x1804A44B0", Slot = "14")]
get
{
return 0;
}
}
/// <summary>Copies the entire <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array.</summary>
/// <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" />. 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>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="array" /> is multidimensional.
/// -or-
/// The number of elements in the source <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
/// <exception cref="T:System.InvalidCastException">The type of the source <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
// Token: 0x06001580 RID: 5504 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001580")]
[Address(RVA = "0x4A3EB0", Offset = "0x4A2CB0", VA = "0x1804A3EB0", Slot = "4")]
void ICollection.CopyTo(Array array, int index)
{
}
/// <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> object.</summary>
/// <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> object.</returns>
// Token: 0x17000468 RID: 1128
// (get) Token: 0x06001581 RID: 5505 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000468")]
object ICollection.SyncRoot
{
[Token(Token = "0x6001581")]
[Address(RVA = "0x4A41A0", Offset = "0x4A2FA0", VA = "0x1804A41A0", Slot = "6")]
get
{
return null;
}
}
/// <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> object is synchronized (thread safe).</summary>
/// <returns>
/// <see langword="true" /> if access to the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> object is synchronized (thread safe); otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
// Token: 0x17000469 RID: 1129
// (get) Token: 0x06001582 RID: 5506 RVA: 0x000098D0 File Offset: 0x00007AD0
[Token(Token = "0x17000469")]
bool ICollection.IsSynchronized
{
[Token(Token = "0x6001582")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "7")]
get
{
return default(bool);
}
}
/// <summary>Returns a <see cref="T:System.String" /> array that contains all the keys in the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance.</summary>
/// <returns>A <see cref="T:System.String" /> array that contains all the keys in the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance.</returns>
// Token: 0x06001583 RID: 5507 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001583")]
[Address(RVA = "0x4A2A30", Offset = "0x4A1830", VA = "0x1804A2A30")]
protected string[] BaseGetAllKeys()
{
return null;
}
// Token: 0x04000E25 RID: 3621
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000E25")]
private bool _readOnly;
// Token: 0x04000E26 RID: 3622
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000E26")]
private ArrayList _entriesArray;
// Token: 0x04000E27 RID: 3623
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000E27")]
private IEqualityComparer _keyComparer;
// Token: 0x04000E28 RID: 3624
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x4000E28")]
private Hashtable _entriesTable;
// Token: 0x04000E29 RID: 3625
[FieldOffset(Offset = "0x30")]
[Token(Token = "0x4000E29")]
private NameObjectCollectionBase.NameObjectEntry _nullKeyEntry;
// Token: 0x04000E2A RID: 3626
[FieldOffset(Offset = "0x38")]
[Token(Token = "0x4000E2A")]
private SerializationInfo _serializationInfo;
// Token: 0x04000E2B RID: 3627
[FieldOffset(Offset = "0x40")]
[Token(Token = "0x4000E2B")]
private int _version;
// Token: 0x04000E2C RID: 3628
[FieldOffset(Offset = "0x48")]
[Token(Token = "0x4000E2C")]
[NonSerialized]
private object _syncRoot;
// Token: 0x04000E2D RID: 3629
[Token(Token = "0x4000E2D")]
private static StringComparer defaultComparer;
// Token: 0x0200033A RID: 826
[Token(Token = "0x200033A")]
internal class NameObjectEntry
{
// Token: 0x06001585 RID: 5509 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001585")]
[Address(RVA = "0x4089A0", Offset = "0x4077A0", VA = "0x1804089A0")]
internal NameObjectEntry(string name, object value)
{
}
// Token: 0x04000E2E RID: 3630
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000E2E")]
internal string Key;
// Token: 0x04000E2F RID: 3631
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000E2F")]
internal object Value;
}
// Token: 0x0200033B RID: 827
[Token(Token = "0x200033B")]
[Serializable]
internal class NameObjectKeysEnumerator : IEnumerator
{
// Token: 0x06001586 RID: 5510 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001586")]
[Address(RVA = "0x4A4650", Offset = "0x4A3450", VA = "0x1804A4650")]
internal NameObjectKeysEnumerator(NameObjectCollectionBase coll)
{
}
// Token: 0x06001587 RID: 5511 RVA: 0x000098E8 File Offset: 0x00007AE8
[Token(Token = "0x6001587")]
[Address(RVA = "0x4A44E0", Offset = "0x4A32E0", VA = "0x1804A44E0", Slot = "4")]
public bool MoveNext()
{
return default(bool);
}
// Token: 0x06001588 RID: 5512 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001588")]
[Address(RVA = "0x4A45C0", Offset = "0x4A33C0", VA = "0x1804A45C0", Slot = "6")]
public void Reset()
{
}
// Token: 0x1700046A RID: 1130
// (get) Token: 0x06001589 RID: 5513 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700046A")]
public object Current
{
[Token(Token = "0x6001589")]
[Address(RVA = "0x4A4690", Offset = "0x4A3490", VA = "0x1804A4690", Slot = "5")]
get
{
return null;
}
}
// Token: 0x04000E30 RID: 3632
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000E30")]
private int _pos;
// Token: 0x04000E31 RID: 3633
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000E31")]
private NameObjectCollectionBase _coll;
// Token: 0x04000E32 RID: 3634
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000E32")]
private int _version;
}
}
}
@@ -0,0 +1,217 @@
using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Collections.Specialized
{
/// <summary>Represents a collection of associated <see cref="T:System.String" /> keys and <see cref="T:System.String" /> values that can be accessed either with the key or with the index.</summary>
// Token: 0x0200033D RID: 829
[Token(Token = "0x200033D")]
[Serializable]
public class NameValueCollection : NameObjectCollectionBase
{
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Specialized.NameValueCollection" /> class that is empty, has the default initial capacity and uses the default case-insensitive hash code provider and the default case-insensitive comparer.</summary>
// Token: 0x06001591 RID: 5521 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001591")]
[Address(RVA = "0x4A5140", Offset = "0x4A3F40", VA = "0x1804A5140")]
public NameValueCollection()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Specialized.NameValueCollection" /> class that is empty, has the specified initial capacity, and uses the specified <see cref="T:System.Collections.IEqualityComparer" /> object.</summary>
/// <param name="capacity">The initial number of entries that the <see cref="T:System.Collections.Specialized.NameValueCollection" /> object can contain.</param>
/// <param name="equalityComparer">The <see cref="T:System.Collections.IEqualityComparer" /> object to use to determine whether two keys are equal and to generate hash codes for the keys in the collection.</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="capacity" /> is less than zero.</exception>
// Token: 0x06001592 RID: 5522 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001592")]
[Address(RVA = "0x4A50C0", Offset = "0x4A3EC0", VA = "0x1804A50C0")]
public NameValueCollection(int capacity, IEqualityComparer equalityComparer)
{
}
// Token: 0x06001593 RID: 5523 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001593")]
[Address(RVA = "0x4A51F0", Offset = "0x4A3FF0", VA = "0x1804A51F0")]
internal NameValueCollection(DBNull dummy)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Specialized.NameValueCollection" /> class that is serializable and uses the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" />.</summary>
/// <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information required to serialize the new <see cref="T:System.Collections.Specialized.NameValueCollection" /> instance.</param>
/// <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains the source and destination of the serialized stream associated with the new <see cref="T:System.Collections.Specialized.NameValueCollection" /> instance.</param>
// Token: 0x06001594 RID: 5524 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001594")]
[Address(RVA = "0x4A5050", Offset = "0x4A3E50", VA = "0x1804A5050")]
protected NameValueCollection(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Resets the cached arrays of the collection to <see langword="null" />.</summary>
// Token: 0x06001595 RID: 5525 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001595")]
[Address(RVA = "0x4A4EA0", Offset = "0x4A3CA0", VA = "0x1804A4EA0")]
protected void InvalidateCachedArrays()
{
}
// Token: 0x06001596 RID: 5526 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001596")]
[Address(RVA = "0x4A48C0", Offset = "0x4A36C0", VA = "0x1804A48C0")]
private static string GetAsOneString(ArrayList list)
{
return null;
}
// Token: 0x06001597 RID: 5527 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001597")]
[Address(RVA = "0x4A4AA0", Offset = "0x4A38A0", VA = "0x1804A4AA0")]
private static string[] GetAsStringArray(ArrayList list)
{
return null;
}
/// <summary>Adds an entry with the specified name and value to the <see cref="T:System.Collections.Specialized.NameValueCollection" />.</summary>
/// <param name="name">The <see cref="T:System.String" /> key of the entry to add. The key can be <see langword="null" />.</param>
/// <param name="value">The <see cref="T:System.String" /> value of the entry to add. The value can be <see langword="null" />.</param>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
// Token: 0x06001598 RID: 5528 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001598")]
[Address(RVA = "0x4A4740", Offset = "0x4A3540", VA = "0x1804A4740", Slot = "15")]
public virtual void Add(string name, string value)
{
}
/// <summary>Gets the values associated with the specified key from the <see cref="T:System.Collections.Specialized.NameValueCollection" /> combined into one comma-separated list.</summary>
/// <param name="name">The <see cref="T:System.String" /> key of the entry that contains the values to get. The key can be <see langword="null" />.</param>
/// <returns>A <see cref="T:System.String" /> that contains a comma-separated list of the values associated with the specified key from the <see cref="T:System.Collections.Specialized.NameValueCollection" />, if found; otherwise, <see langword="null" />.</returns>
// Token: 0x06001599 RID: 5529 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001599")]
[Address(RVA = "0x4A4C90", Offset = "0x4A3A90", VA = "0x1804A4C90", Slot = "16")]
public virtual string Get(string name)
{
return null;
}
/// <summary>Gets the values associated with the specified key from the <see cref="T:System.Collections.Specialized.NameValueCollection" />.</summary>
/// <param name="name">The <see cref="T:System.String" /> key of the entry that contains the values to get. The key can be <see langword="null" />.</param>
/// <returns>A <see cref="T:System.String" /> array that contains the values associated with the specified key from the <see cref="T:System.Collections.Specialized.NameValueCollection" />, if found; otherwise, <see langword="null" />.</returns>
// Token: 0x0600159A RID: 5530 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600159A")]
[Address(RVA = "0x4A4B60", Offset = "0x4A3960", VA = "0x1804A4B60", Slot = "17")]
public virtual string[] GetValues(string name)
{
return null;
}
/// <summary>Sets the value of an entry in the <see cref="T:System.Collections.Specialized.NameValueCollection" />.</summary>
/// <param name="name">The <see cref="T:System.String" /> key of the entry to add the new value to. The key can be <see langword="null" />.</param>
/// <param name="value">The <see cref="T:System.Object" /> that represents the new value to add to the specified entry. The value can be <see langword="null" />.</param>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
// Token: 0x0600159B RID: 5531 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600159B")]
[Address(RVA = "0x4A4ED0", Offset = "0x4A3CD0", VA = "0x1804A4ED0", Slot = "18")]
public virtual void Set(string name, string value)
{
}
/// <summary>Removes the entries with the specified key from the <see cref="T:System.Collections.Specialized.NameObjectCollectionBase" /> instance.</summary>
/// <param name="name">The <see cref="T:System.String" /> key of the entry to remove. The key can be <see langword="null" />.</param>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
// Token: 0x0600159C RID: 5532 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600159C")]
[Address(RVA = "0x4A4EB0", Offset = "0x4A3CB0", VA = "0x1804A4EB0", Slot = "19")]
public virtual void Remove(string name)
{
}
/// <summary>Gets or sets the entry with the specified key in the <see cref="T:System.Collections.Specialized.NameValueCollection" />.</summary>
/// <param name="name">The <see cref="T:System.String" /> key of the entry to locate. The key can be <see langword="null" />.</param>
/// <returns>A <see cref="T:System.String" /> that contains the comma-separated list of values associated with the specified key, if found; otherwise, <see langword="null" />.</returns>
/// <exception cref="T:System.NotSupportedException">The collection is read-only and the operation attempts to modify the collection.</exception>
// Token: 0x1700046F RID: 1135
[Token(Token = "0x1700046F")]
public string this[string name]
{
[Token(Token = "0x600159D")]
[Address(RVA = "0x4A5380", Offset = "0x4A4180", VA = "0x1804A5380")]
get
{
return null;
}
[Token(Token = "0x600159E")]
[Address(RVA = "0x4A53A0", Offset = "0x4A41A0", VA = "0x1804A53A0")]
set
{
}
}
/// <summary>Gets the values at the specified index of the <see cref="T:System.Collections.Specialized.NameValueCollection" /> combined into one comma-separated list.</summary>
/// <param name="index">The zero-based index of the entry that contains the values to get from the collection.</param>
/// <returns>A <see cref="T:System.String" /> that contains a comma-separated list of the values at the specified index of the <see cref="T:System.Collections.Specialized.NameValueCollection" />, if found; otherwise, <see langword="null" />.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is outside the valid range of indexes for the collection.</exception>
// Token: 0x0600159F RID: 5535 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600159F")]
[Address(RVA = "0x4A4D40", Offset = "0x4A3B40", VA = "0x1804A4D40", Slot = "20")]
public virtual string Get(int index)
{
return null;
}
/// <summary>Gets the key at the specified index of the <see cref="T:System.Collections.Specialized.NameValueCollection" />.</summary>
/// <param name="index">The zero-based index of the key to get from the collection.</param>
/// <returns>A <see cref="T:System.String" /> that contains the key at the specified index of the <see cref="T:System.Collections.Specialized.NameValueCollection" />, if found; otherwise, <see langword="null" />.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is outside the valid range of indexes for the collection.</exception>
// Token: 0x060015A0 RID: 5536 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60015A0")]
[Address(RVA = "0x4A4B50", Offset = "0x4A3950", VA = "0x1804A4B50", Slot = "21")]
public virtual string GetKey(int index)
{
return null;
}
/// <summary>Gets the entry at the specified index of the <see cref="T:System.Collections.Specialized.NameValueCollection" />.</summary>
/// <param name="index">The zero-based index of the entry to locate in the collection.</param>
/// <returns>A <see cref="T:System.String" /> that contains the comma-separated list of values at the specified index of the collection.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is outside the valid range of indexes for the collection.</exception>
// Token: 0x17000470 RID: 1136
[Token(Token = "0x17000470")]
public string this[int index]
{
[Token(Token = "0x60015A1")]
[Address(RVA = "0x4A5360", Offset = "0x4A4160", VA = "0x1804A5360")]
get
{
return null;
}
}
/// <summary>Gets all the keys in the <see cref="T:System.Collections.Specialized.NameValueCollection" />.</summary>
/// <returns>A <see cref="T:System.String" /> array that contains all the keys of the <see cref="T:System.Collections.Specialized.NameValueCollection" />.</returns>
// Token: 0x17000471 RID: 1137
// (get) Token: 0x060015A2 RID: 5538 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000471")]
public virtual string[] AllKeys
{
[Token(Token = "0x60015A2")]
[Address(RVA = "0x4A5250", Offset = "0x4A4050", VA = "0x1804A5250", Slot = "22")]
get
{
return null;
}
}
// Token: 0x04000E37 RID: 3639
[FieldOffset(Offset = "0x50")]
[Token(Token = "0x4000E37")]
private string[] _all;
// Token: 0x04000E38 RID: 3640
[FieldOffset(Offset = "0x58")]
[Token(Token = "0x4000E38")]
private string[] _allKeys;
}
}
@@ -0,0 +1,520 @@
using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Collections.Specialized
{
/// <summary>Represents a collection of key/value pairs that are accessible by the key or index.</summary>
// Token: 0x0200033E RID: 830
[Token(Token = "0x200033E")]
[Serializable]
public class OrderedDictionary : IDictionary, ICollection, IEnumerable, ISerializable, IDeserializationCallback
{
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> class.</summary>
// Token: 0x060015A3 RID: 5539 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015A3")]
[Address(RVA = "0x4A7210", Offset = "0x4A6010", VA = "0x1804A7210")]
public OrderedDictionary()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> class using the specified initial capacity.</summary>
/// <param name="capacity">The initial number of elements that the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection can contain.</param>
// Token: 0x060015A4 RID: 5540 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015A4")]
[Address(RVA = "0x4A71E0", Offset = "0x4A5FE0", VA = "0x1804A71E0")]
public OrderedDictionary(int capacity)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> class using the specified initial capacity and comparer.</summary>
/// <param name="capacity">The initial number of elements that the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection can contain.</param>
/// <param name="comparer">The <see cref="T:System.Collections.IComparer" /> to use to determine whether two keys are equal.
/// -or-
/// <see langword="null" /> to use the default comparer, which is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />.</param>
// Token: 0x060015A5 RID: 5541 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015A5")]
[Address(RVA = "0x4A7260", Offset = "0x4A6060", VA = "0x1804A7260")]
public OrderedDictionary(int capacity, IEqualityComparer comparer)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> class that is serializable using the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> objects.</summary>
/// <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object containing the information required to serialize the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection.</param>
/// <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object containing the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Specialized.OrderedDictionary" />.</param>
// Token: 0x060015A6 RID: 5542 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015A6")]
[Address(RVA = "0x4A7230", Offset = "0x4A6030", VA = "0x1804A7230")]
protected OrderedDictionary(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Gets the number of key/values pairs contained in the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection.</summary>
/// <returns>The number of key/value pairs contained in the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection.</returns>
// Token: 0x17000472 RID: 1138
// (get) Token: 0x060015A7 RID: 5543 RVA: 0x00009930 File Offset: 0x00007B30
[Token(Token = "0x17000472")]
public int Count
{
[Token(Token = "0x60015A7")]
[Address(RVA = "0x4A72A0", Offset = "0x4A60A0", VA = "0x1804A72A0", Slot = "16")]
get
{
return 0;
}
}
/// <summary>Gets a value indicating whether the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> has a fixed size.</summary>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> has a fixed size; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
// Token: 0x17000473 RID: 1139
// (get) Token: 0x060015A8 RID: 5544 RVA: 0x00009948 File Offset: 0x00007B48
[Token(Token = "0x17000473")]
bool IDictionary.IsFixedSize
{
[Token(Token = "0x60015A8")]
[Address(RVA = "0x4364F0", Offset = "0x4352F0", VA = "0x1804364F0", Slot = "12")]
get
{
return default(bool);
}
}
/// <summary>Gets a value indicating whether the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection is read-only.</summary>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection is read-only; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
// Token: 0x17000474 RID: 1140
// (get) Token: 0x060015A9 RID: 5545 RVA: 0x00009960 File Offset: 0x00007B60
[Token(Token = "0x17000474")]
public bool IsReadOnly
{
[Token(Token = "0x60015A9")]
[Address(RVA = "0x4364F0", Offset = "0x4352F0", VA = "0x1804364F0", Slot = "11")]
get
{
return default(bool);
}
}
/// <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> object is synchronized (thread-safe).</summary>
/// <returns>This method always returns <see langword="false" />.</returns>
// Token: 0x17000475 RID: 1141
// (get) Token: 0x060015AA RID: 5546 RVA: 0x00009978 File Offset: 0x00007B78
[Token(Token = "0x17000475")]
bool ICollection.IsSynchronized
{
[Token(Token = "0x60015AA")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "18")]
get
{
return default(bool);
}
}
/// <summary>Gets an <see cref="T:System.Collections.ICollection" /> object containing the keys in the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection.</summary>
/// <returns>An <see cref="T:System.Collections.ICollection" /> object containing the keys in the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection.</returns>
// Token: 0x17000476 RID: 1142
// (get) Token: 0x060015AB RID: 5547 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000476")]
public ICollection Keys
{
[Token(Token = "0x60015AB")]
[Address(RVA = "0x4A7370", Offset = "0x4A6170", VA = "0x1804A7370", Slot = "6")]
get
{
return null;
}
}
// Token: 0x17000477 RID: 1143
// (get) Token: 0x060015AC RID: 5548 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000477")]
private ArrayList objectsArray
{
[Token(Token = "0x60015AC")]
[Address(RVA = "0x4A74D0", Offset = "0x4A62D0", VA = "0x1804A74D0")]
get
{
return null;
}
}
// Token: 0x17000478 RID: 1144
// (get) Token: 0x060015AD RID: 5549 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000478")]
private Hashtable objectsTable
{
[Token(Token = "0x60015AD")]
[Address(RVA = "0x4A7540", Offset = "0x4A6340", VA = "0x1804A7540")]
get
{
return null;
}
}
/// <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> object.</summary>
/// <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> object.</returns>
// Token: 0x17000479 RID: 1145
// (get) Token: 0x060015AE RID: 5550 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000479")]
object ICollection.SyncRoot
{
[Token(Token = "0x60015AE")]
[Address(RVA = "0x4A7080", Offset = "0x4A5E80", VA = "0x1804A7080", Slot = "17")]
get
{
return null;
}
}
/// <summary>Gets or sets the value with the specified key.</summary>
/// <param name="key">The key of the value to get or set.</param>
/// <returns>The value associated with the specified key. If the specified key is not found, attempting to get it returns <see langword="null" />, and attempting to set it creates a new element using the specified key.</returns>
/// <exception cref="T:System.NotSupportedException">The property is being set and the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection is read-only.</exception>
// Token: 0x1700047A RID: 1146
[Token(Token = "0x1700047A")]
public object this[object key]
{
[Token(Token = "0x60015AF")]
[Address(RVA = "0x4A7330", Offset = "0x4A6130", VA = "0x1804A7330", Slot = "4")]
get
{
return null;
}
[Token(Token = "0x60015B0")]
[Address(RVA = "0x4A75C0", Offset = "0x4A63C0", VA = "0x1804A75C0", Slot = "5")]
set
{
}
}
/// <summary>Gets an <see cref="T:System.Collections.ICollection" /> object containing the values in the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection.</summary>
/// <returns>An <see cref="T:System.Collections.ICollection" /> object containing the values in the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection.</returns>
// Token: 0x1700047B RID: 1147
// (get) Token: 0x060015B1 RID: 5553 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700047B")]
public ICollection Values
{
[Token(Token = "0x60015B1")]
[Address(RVA = "0x4A7420", Offset = "0x4A6220", VA = "0x1804A7420", Slot = "7")]
get
{
return null;
}
}
/// <summary>Adds an entry with the specified key and value into the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection with the lowest available index.</summary>
/// <param name="key">The key of the entry to add.</param>
/// <param name="value">The value of the entry to add. This value can be <see langword="null" />.</param>
/// <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection is read-only.</exception>
/// <exception cref="T:System.ArgumentException">An element with the same key already exists in the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection.</exception>
// Token: 0x060015B2 RID: 5554 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015B2")]
[Address(RVA = "0x4A6590", Offset = "0x4A5390", VA = "0x1804A6590", Slot = "9")]
public void Add(object key, object value)
{
}
/// <summary>Removes all elements from the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection.</summary>
/// <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection is read-only.</exception>
// Token: 0x060015B3 RID: 5555 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015B3")]
[Address(RVA = "0x4A66B0", Offset = "0x4A54B0", VA = "0x1804A66B0", Slot = "10")]
public void Clear()
{
}
/// <summary>Determines whether the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection contains a specific key.</summary>
/// <param name="key">The key to locate in the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection.</param>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection contains an element with the specified key; otherwise, <see langword="false" />.</returns>
// Token: 0x060015B4 RID: 5556 RVA: 0x00009990 File Offset: 0x00007B90
[Token(Token = "0x60015B4")]
[Address(RVA = "0x4A6780", Offset = "0x4A5580", VA = "0x1804A6780", Slot = "8")]
public bool Contains(object key)
{
return default(bool);
}
/// <summary>Copies the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> elements to a one-dimensional <see cref="T:System.Array" /> object at the specified index.</summary>
/// <param name="array">The one-dimensional <see cref="T:System.Array" /> object that is the destination of the <see cref="T:System.Collections.DictionaryEntry" /> objects copied from <see cref="T:System.Collections.Specialized.OrderedDictionary" /> 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: 0x060015B5 RID: 5557 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015B5")]
[Address(RVA = "0x4A67C0", Offset = "0x4A55C0", VA = "0x1804A67C0", Slot = "15")]
public void CopyTo(Array array, int index)
{
}
// Token: 0x060015B6 RID: 5558 RVA: 0x000099A8 File Offset: 0x00007BA8
[Token(Token = "0x60015B6")]
[Address(RVA = "0x4A6A90", Offset = "0x4A5890", VA = "0x1804A6A90")]
private int IndexOfKey(object key)
{
return 0;
}
/// <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and is called back by the deserialization event when deserialization is complete.</summary>
/// <param name="sender">The source of the deserialization event.</param>
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object associated with the current <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection is invalid.</exception>
// Token: 0x060015B7 RID: 5559 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015B7")]
[Address(RVA = "0x4A6C20", Offset = "0x4A5A20", VA = "0x1804A6C20", Slot = "22")]
protected virtual void OnDeserialization(object sender)
{
}
/// <summary>Removes the entry with the specified key from the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection.</summary>
/// <param name="key">The key of the entry to remove.</param>
/// <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection is read-only.</exception>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x060015B8 RID: 5560 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015B8")]
[Address(RVA = "0x4A6F50", Offset = "0x4A5D50", VA = "0x1804A6F50", Slot = "14")]
public void Remove(object key)
{
}
/// <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> object that iterates through the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection.</summary>
/// <returns>An <see cref="T:System.Collections.IDictionaryEnumerator" /> object for the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection.</returns>
// Token: 0x060015B9 RID: 5561 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60015B9")]
[Address(RVA = "0x4A6810", Offset = "0x4A5610", VA = "0x1804A6810", Slot = "23")]
public virtual IDictionaryEnumerator GetEnumerator()
{
return null;
}
/// <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> object that iterates through the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection.</summary>
/// <returns>An <see cref="T:System.Collections.IDictionaryEnumerator" /> object for the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection.</returns>
// Token: 0x060015BA RID: 5562 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60015BA")]
[Address(RVA = "0x4A70F0", Offset = "0x4A5EF0", VA = "0x1804A70F0", Slot = "19")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
/// <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and returns the data needed to serialize the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection.</summary>
/// <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object containing the information required to serialize the <see cref="T:System.Collections.Specialized.OrderedDictionary" /> collection.</param>
/// <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object containing the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Specialized.OrderedDictionary" />.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="info" /> is <see langword="null" />.</exception>
// Token: 0x060015BB RID: 5563 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015BB")]
[Address(RVA = "0x4A68E0", Offset = "0x4A56E0", VA = "0x1804A68E0", Slot = "24")]
public virtual void GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and is called back by the deserialization event when deserialization is complete.</summary>
/// <param name="sender">The source of the deserialization event.</param>
// Token: 0x060015BC RID: 5564 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015BC")]
[Address(RVA = "0x4A71C0", Offset = "0x4A5FC0", VA = "0x1804A71C0", Slot = "21")]
void IDeserializationCallback.OnDeserialization(object sender)
{
}
// Token: 0x04000E39 RID: 3641
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000E39")]
private ArrayList _objectsArray;
// Token: 0x04000E3A RID: 3642
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000E3A")]
private Hashtable _objectsTable;
// Token: 0x04000E3B RID: 3643
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000E3B")]
private int _initialCapacity;
// Token: 0x04000E3C RID: 3644
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x4000E3C")]
private IEqualityComparer _comparer;
// Token: 0x04000E3D RID: 3645
[FieldOffset(Offset = "0x30")]
[Token(Token = "0x4000E3D")]
private bool _readOnly;
// Token: 0x04000E3E RID: 3646
[FieldOffset(Offset = "0x38")]
[Token(Token = "0x4000E3E")]
private object _syncRoot;
// Token: 0x04000E3F RID: 3647
[FieldOffset(Offset = "0x40")]
[Token(Token = "0x4000E3F")]
private SerializationInfo _siInfo;
// Token: 0x0200033F RID: 831
[Token(Token = "0x200033F")]
private class OrderedDictionaryEnumerator : IDictionaryEnumerator, IEnumerator
{
// Token: 0x060015BD RID: 5565 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015BD")]
[Address(RVA = "0x4A5D90", Offset = "0x4A4B90", VA = "0x1804A5D90")]
internal OrderedDictionaryEnumerator(ArrayList array, int objectReturnType)
{
}
// Token: 0x1700047C RID: 1148
// (get) Token: 0x060015BE RID: 5566 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700047C")]
public object Current
{
[Token(Token = "0x60015BE")]
[Address(RVA = "0x4A5DF0", Offset = "0x4A4BF0", VA = "0x1804A5DF0", Slot = "8")]
get
{
return null;
}
}
// Token: 0x1700047D RID: 1149
// (get) Token: 0x060015BF RID: 5567 RVA: 0x000099C0 File Offset: 0x00007BC0
[Token(Token = "0x1700047D")]
public DictionaryEntry Entry
{
[Token(Token = "0x60015BF")]
[Address(RVA = "0x4A5FF0", Offset = "0x4A4DF0", VA = "0x1804A5FF0", Slot = "6")]
get
{
return default(DictionaryEntry);
}
}
// Token: 0x1700047E RID: 1150
// (get) Token: 0x060015C0 RID: 5568 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700047E")]
public object Key
{
[Token(Token = "0x60015C0")]
[Address(RVA = "0x4A6100", Offset = "0x4A4F00", VA = "0x1804A6100", Slot = "4")]
get
{
return null;
}
}
// Token: 0x1700047F RID: 1151
// (get) Token: 0x060015C1 RID: 5569 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700047F")]
public object Value
{
[Token(Token = "0x60015C1")]
[Address(RVA = "0x4A6180", Offset = "0x4A4F80", VA = "0x1804A6180", Slot = "5")]
get
{
return null;
}
}
// Token: 0x060015C2 RID: 5570 RVA: 0x000099D8 File Offset: 0x00007BD8
[Token(Token = "0x60015C2")]
[Address(RVA = "0x4A5CF0", Offset = "0x4A4AF0", VA = "0x1804A5CF0", Slot = "7")]
public bool MoveNext()
{
return default(bool);
}
// Token: 0x060015C3 RID: 5571 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015C3")]
[Address(RVA = "0x4A5D40", Offset = "0x4A4B40", VA = "0x1804A5D40", Slot = "9")]
public void Reset()
{
}
// Token: 0x04000E40 RID: 3648
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000E40")]
private int _objectReturnType;
// Token: 0x04000E41 RID: 3649
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000E41")]
private IEnumerator arrayEnumerator;
}
// Token: 0x02000340 RID: 832
[Token(Token = "0x2000340")]
private class OrderedDictionaryKeyValueCollection : ICollection, IEnumerable
{
// Token: 0x060015C4 RID: 5572 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015C4")]
[Address(RVA = "0x42C280", Offset = "0x42B080", VA = "0x18042C280")]
public OrderedDictionaryKeyValueCollection(ArrayList array, bool isKeys)
{
}
// Token: 0x060015C5 RID: 5573 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015C5")]
[Address(RVA = "0x4A6210", Offset = "0x4A5010", VA = "0x1804A6210", Slot = "4")]
void ICollection.CopyTo(Array array, int index)
{
}
// Token: 0x17000480 RID: 1152
// (get) Token: 0x060015C6 RID: 5574 RVA: 0x000099F0 File Offset: 0x00007BF0
[Token(Token = "0x17000480")]
int ICollection.Count
{
[Token(Token = "0x60015C6")]
[Address(RVA = "0x4A64A0", Offset = "0x4A52A0", VA = "0x1804A64A0", Slot = "5")]
get
{
return 0;
}
}
// Token: 0x17000481 RID: 1153
// (get) Token: 0x060015C7 RID: 5575 RVA: 0x00009A08 File Offset: 0x00007C08
[Token(Token = "0x17000481")]
bool ICollection.IsSynchronized
{
[Token(Token = "0x60015C7")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "7")]
get
{
return default(bool);
}
}
// Token: 0x17000482 RID: 1154
// (get) Token: 0x060015C8 RID: 5576 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000482")]
object ICollection.SyncRoot
{
[Token(Token = "0x60015C8")]
[Address(RVA = "0x4A64D0", Offset = "0x4A52D0", VA = "0x1804A64D0", Slot = "6")]
get
{
return null;
}
}
// Token: 0x060015C9 RID: 5577 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60015C9")]
[Address(RVA = "0x4A6500", Offset = "0x4A5300", VA = "0x1804A6500", Slot = "8")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
// Token: 0x04000E42 RID: 3650
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000E42")]
private ArrayList _objects;
// Token: 0x04000E43 RID: 3651
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000E43")]
private bool isKeys;
}
}
}
@@ -0,0 +1,342 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Specialized
{
/// <summary>Represents a collection of strings.</summary>
// Token: 0x02000341 RID: 833
[Token(Token = "0x2000341")]
[Serializable]
public class StringCollection : IList, ICollection, IEnumerable
{
/// <summary>Gets or sets the element at the specified index.</summary>
/// <param name="index">The zero-based index of the entry to get or set.</param>
/// <returns>The element at the specified index.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.
/// -or-
/// <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.Specialized.StringCollection.Count" />.</exception>
// Token: 0x17000483 RID: 1155
[Token(Token = "0x17000483")]
public string this[int index]
{
[Token(Token = "0x60015CA")]
[Address(RVA = "0x4A8010", Offset = "0x4A6E10", VA = "0x1804A8010")]
get
{
return null;
}
[Token(Token = "0x60015CB")]
[Address(RVA = "0x4A8180", Offset = "0x4A6F80", VA = "0x1804A8180")]
set
{
}
}
/// <summary>Gets the number of strings contained in the <see cref="T:System.Collections.Specialized.StringCollection" />.</summary>
/// <returns>The number of strings contained in the <see cref="T:System.Collections.Specialized.StringCollection" />.</returns>
// Token: 0x17000484 RID: 1156
// (get) Token: 0x060015CC RID: 5580 RVA: 0x00009A20 File Offset: 0x00007C20
[Token(Token = "0x17000484")]
public int Count
{
[Token(Token = "0x60015CC")]
[Address(RVA = "0x4A64A0", Offset = "0x4A52A0", VA = "0x1804A64A0", Slot = "16")]
get
{
return 0;
}
}
/// <summary>Gets a value indicating whether the <see cref="T:System.Collections.Specialized.StringCollection" /> object is read-only.</summary>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.Collections.Specialized.StringCollection" /> object is read-only; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
// Token: 0x17000485 RID: 1157
// (get) Token: 0x060015CD RID: 5581 RVA: 0x00009A38 File Offset: 0x00007C38
[Token(Token = "0x17000485")]
bool IList.IsReadOnly
{
[Token(Token = "0x60015CD")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "9")]
get
{
return default(bool);
}
}
/// <summary>Gets a value indicating whether the <see cref="T:System.Collections.Specialized.StringCollection" /> object has a fixed size.</summary>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.Collections.Specialized.StringCollection" /> object has a fixed size; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
// Token: 0x17000486 RID: 1158
// (get) Token: 0x060015CE RID: 5582 RVA: 0x00009A50 File Offset: 0x00007C50
[Token(Token = "0x17000486")]
bool IList.IsFixedSize
{
[Token(Token = "0x60015CE")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "10")]
get
{
return default(bool);
}
}
/// <summary>Adds a string to the end of the <see cref="T:System.Collections.Specialized.StringCollection" />.</summary>
/// <param name="value">The string to add to the end of the <see cref="T:System.Collections.Specialized.StringCollection" />. The value can be <see langword="null" />.</param>
/// <returns>The zero-based index at which the new element is inserted.</returns>
// Token: 0x060015CF RID: 5583 RVA: 0x00009A68 File Offset: 0x00007C68
[Token(Token = "0x60015CF")]
[Address(RVA = "0x4A7BD0", Offset = "0x4A69D0", VA = "0x1804A7BD0")]
public int Add(string value)
{
return 0;
}
/// <summary>Removes all the strings from the <see cref="T:System.Collections.Specialized.StringCollection" />.</summary>
// Token: 0x060015D0 RID: 5584 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015D0")]
[Address(RVA = "0x4A7C00", Offset = "0x4A6A00", VA = "0x1804A7C00", Slot = "8")]
public void Clear()
{
}
/// <summary>Determines whether the specified string is in the <see cref="T:System.Collections.Specialized.StringCollection" />.</summary>
/// <param name="value">The string to locate in the <see cref="T:System.Collections.Specialized.StringCollection" />. The value can be <see langword="null" />.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> is found in the <see cref="T:System.Collections.Specialized.StringCollection" />; otherwise, <see langword="false" />.</returns>
// Token: 0x060015D1 RID: 5585 RVA: 0x00009A80 File Offset: 0x00007C80
[Token(Token = "0x60015D1")]
[Address(RVA = "0x4A7C30", Offset = "0x4A6A30", VA = "0x1804A7C30")]
public bool Contains(string value)
{
return default(bool);
}
/// <summary>Copies the entire <see cref="T:System.Collections.Specialized.StringCollection" /> values to a one-dimensional array of strings, starting at the specified index of the target array.</summary>
/// <param name="array">The one-dimensional array of strings that is the destination of the elements copied from <see cref="T:System.Collections.Specialized.StringCollection" />. 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>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="array" /> is multidimensional.
/// -or-
/// The number of elements in the source <see cref="T:System.Collections.Specialized.StringCollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
/// <exception cref="T:System.InvalidCastException">The type of the source <see cref="T:System.Collections.Specialized.StringCollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
// Token: 0x060015D2 RID: 5586 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015D2")]
[Address(RVA = "0x4A7C60", Offset = "0x4A6A60", VA = "0x1804A7C60")]
public void CopyTo(string[] array, int index)
{
}
/// <summary>Searches for the specified string and returns the zero-based index of the first occurrence within the <see cref="T:System.Collections.Specialized.StringCollection" />.</summary>
/// <param name="value">The string to locate. The value can be <see langword="null" />.</param>
/// <returns>The zero-based index of the first occurrence of <paramref name="value" /> in the <see cref="T:System.Collections.Specialized.StringCollection" />, if found; otherwise, -1.</returns>
// Token: 0x060015D3 RID: 5587 RVA: 0x00009A98 File Offset: 0x00007C98
[Token(Token = "0x60015D3")]
[Address(RVA = "0x4A7C90", Offset = "0x4A6A90", VA = "0x1804A7C90")]
public int IndexOf(string value)
{
return 0;
}
/// <summary>Inserts a string into the <see cref="T:System.Collections.Specialized.StringCollection" /> at the specified index.</summary>
/// <param name="index">The zero-based index at which <paramref name="value" /> is inserted.</param>
/// <param name="value">The string to insert. The value can be <see langword="null" />.</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.
/// -or-
/// <paramref name="index" /> greater than <see cref="P:System.Collections.Specialized.StringCollection.Count" />.</exception>
// Token: 0x060015D4 RID: 5588 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015D4")]
[Address(RVA = "0x4A7CC0", Offset = "0x4A6AC0", VA = "0x1804A7CC0")]
public void Insert(int index, string value)
{
}
/// <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.Specialized.StringCollection" /> is synchronized (thread safe).</summary>
/// <returns>This property always returns <see langword="false" />.</returns>
// Token: 0x17000487 RID: 1159
// (get) Token: 0x060015D5 RID: 5589 RVA: 0x00009AB0 File Offset: 0x00007CB0
[Token(Token = "0x17000487")]
public bool IsSynchronized
{
[Token(Token = "0x60015D5")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "18")]
get
{
return default(bool);
}
}
/// <summary>Removes the first occurrence of a specific string from the <see cref="T:System.Collections.Specialized.StringCollection" />.</summary>
/// <param name="value">The string to remove from the <see cref="T:System.Collections.Specialized.StringCollection" />. The value can be <see langword="null" />.</param>
// Token: 0x060015D6 RID: 5590 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015D6")]
[Address(RVA = "0x4A7D20", Offset = "0x4A6B20", VA = "0x1804A7D20")]
public void Remove(string value)
{
}
/// <summary>Removes the string at the specified index of the <see cref="T:System.Collections.Specialized.StringCollection" />.</summary>
/// <param name="index">The zero-based index of the string to remove.</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.
/// -or-
/// <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.Specialized.StringCollection.Count" />.</exception>
// Token: 0x060015D7 RID: 5591 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015D7")]
[Address(RVA = "0x4A7CF0", Offset = "0x4A6AF0", VA = "0x1804A7CF0", Slot = "14")]
public void RemoveAt(int index)
{
}
/// <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.Specialized.StringCollection" />.</summary>
/// <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.Specialized.StringCollection" />.</returns>
// Token: 0x17000488 RID: 1160
// (get) Token: 0x060015D8 RID: 5592 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000488")]
public object SyncRoot
{
[Token(Token = "0x60015D8")]
[Address(RVA = "0x4A64D0", Offset = "0x4A52D0", VA = "0x1804A64D0", Slot = "17")]
get
{
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.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.
/// -or-
/// <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.Specialized.StringCollection.Count" />.</exception>
// Token: 0x17000489 RID: 1161
[Token(Token = "0x17000489")]
object IList.this[int index]
{
[Token(Token = "0x60015D9")]
[Address(RVA = "0x4A8010", Offset = "0x4A6E10", VA = "0x1804A8010", Slot = "4")]
get
{
return null;
}
[Token(Token = "0x60015DA")]
[Address(RVA = "0x4A8090", Offset = "0x4A6E90", VA = "0x1804A8090", Slot = "5")]
set
{
}
}
/// <summary>Adds an object to the end of the <see cref="T:System.Collections.Specialized.StringCollection" />.</summary>
/// <param name="value">The <see cref="T:System.Object" /> to be added to the end of the <see cref="T:System.Collections.Specialized.StringCollection" />. The value can be <see langword="null" />.</param>
/// <returns>The <see cref="T:System.Collections.Specialized.StringCollection" /> index at which the <paramref name="value" /> has been added.</returns>
/// <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Specialized.StringCollection" /> is read-only.
/// -or-
/// The <see cref="T:System.Collections.Specialized.StringCollection" /> has a fixed size.</exception>
// Token: 0x060015DB RID: 5595 RVA: 0x00009AC8 File Offset: 0x00007CC8
[Token(Token = "0x60015DB")]
[Address(RVA = "0x4A7D80", Offset = "0x4A6B80", VA = "0x1804A7D80", Slot = "6")]
int IList.Add(object value)
{
return 0;
}
/// <summary>Determines whether an element is in the <see cref="T:System.Collections.Specialized.StringCollection" />.</summary>
/// <param name="value">The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.Specialized.StringCollection" />. The value can be <see langword="null" />.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> is found in the <see cref="T:System.Collections.Specialized.StringCollection" />; otherwise, <see langword="false" />.</returns>
// Token: 0x060015DC RID: 5596 RVA: 0x00009AE0 File Offset: 0x00007CE0
[Token(Token = "0x60015DC")]
[Address(RVA = "0x4A7E00", Offset = "0x4A6C00", VA = "0x1804A7E00", Slot = "7")]
bool IList.Contains(object value)
{
return default(bool);
}
/// <summary>Searches for the specified <see cref="T:System.Object" /> and returns the zero-based index of the first occurrence within the entire <see cref="T:System.Collections.Specialized.StringCollection" />.</summary>
/// <param name="value">The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.Specialized.StringCollection" />. The value can be <see langword="null" />.</param>
/// <returns>The zero-based index of the first occurrence of <paramref name="value" /> within the entire <see cref="T:System.Collections.Specialized.StringCollection" />, if found; otherwise, -1.</returns>
// Token: 0x060015DD RID: 5597 RVA: 0x00009AF8 File Offset: 0x00007CF8
[Token(Token = "0x60015DD")]
[Address(RVA = "0x4A7E80", Offset = "0x4A6C80", VA = "0x1804A7E80", Slot = "11")]
int IList.IndexOf(object value)
{
return 0;
}
/// <summary>Inserts an element into the <see cref="T:System.Collections.Specialized.StringCollection" /> 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. The value can be <see langword="null" />.</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.
/// -or-
/// <paramref name="index" /> is greater than <see cref="P:System.Collections.Specialized.StringCollection.Count" />.</exception>
/// <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Specialized.StringCollection" /> is read-only.
/// -or-
/// The <see cref="T:System.Collections.Specialized.StringCollection" /> has a fixed size.</exception>
// Token: 0x060015DE RID: 5598 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015DE")]
[Address(RVA = "0x4A7F00", Offset = "0x4A6D00", VA = "0x1804A7F00", Slot = "12")]
void IList.Insert(int index, object value)
{
}
/// <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Specialized.StringCollection" />.</summary>
/// <param name="value">The <see cref="T:System.Object" /> to remove from the <see cref="T:System.Collections.Specialized.StringCollection" />. The value can be <see langword="null" />.</param>
/// <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Specialized.StringCollection" /> is read-only.
/// -or-
/// The <see cref="T:System.Collections.Specialized.StringCollection" /> has a fixed size.</exception>
// Token: 0x060015DF RID: 5599 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015DF")]
[Address(RVA = "0x4A7F90", Offset = "0x4A6D90", VA = "0x1804A7F90", Slot = "13")]
void IList.Remove(object value)
{
}
/// <summary>Copies the entire <see cref="T:System.Collections.Specialized.StringCollection" /> to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array.</summary>
/// <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Specialized.StringCollection" />. 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>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="array" /> is multidimensional.
/// -or-
/// The number of elements in the source <see cref="T:System.Collections.Specialized.StringCollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
/// <exception cref="T:System.InvalidCastException">The type of the source <see cref="T:System.Collections.Specialized.StringCollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
// Token: 0x060015E0 RID: 5600 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015E0")]
[Address(RVA = "0x4A7C60", Offset = "0x4A6A60", VA = "0x1804A7C60", Slot = "15")]
void ICollection.CopyTo(Array array, int index)
{
}
/// <summary>Returns a <see cref="T:System.Collections.IEnumerator" /> that iterates through the <see cref="T:System.Collections.Specialized.StringCollection" />.</summary>
/// <returns>A <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Collections.Specialized.StringCollection" />.</returns>
// Token: 0x060015E1 RID: 5601 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60015E1")]
[Address(RVA = "0x4A7D50", Offset = "0x4A6B50", VA = "0x1804A7D50", Slot = "19")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Specialized.StringCollection" /> class.</summary>
// Token: 0x060015E2 RID: 5602 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015E2")]
[Address(RVA = "0x4A8120", Offset = "0x4A6F20", VA = "0x1804A8120")]
public StringCollection()
{
}
// Token: 0x04000E44 RID: 3652
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000E44")]
private ArrayList data;
}
}
@@ -0,0 +1,99 @@
using System;
using System.ComponentModel.Design.Serialization;
using Cpp2IlInjected;
namespace System.Collections.Specialized
{
/// <summary>Implements a hash table with the key and the value strongly typed to be strings rather than objects.</summary>
// Token: 0x02000342 RID: 834
[Token(Token = "0x2000342")]
[DesignerSerializer("System.Diagnostics.Design.StringDictionaryCodeDomSerializer, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.Serialization.CodeDomSerializer, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
[Serializable]
public class StringDictionary : IEnumerable
{
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Specialized.StringDictionary" /> class.</summary>
// Token: 0x060015E3 RID: 5603 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015E3")]
[Address(RVA = "0x495E90", Offset = "0x494C90", VA = "0x180495E90")]
public StringDictionary()
{
}
/// <summary>Gets or sets the value associated with the specified key.</summary>
/// <param name="key">The key whose value to get or set.</param>
/// <returns>The value associated with the specified key. If the specified key is not found, Get returns <see langword="null" />, and Set creates a new entry with the specified key.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
// Token: 0x1700048A RID: 1162
[Token(Token = "0x1700048A")]
public virtual string this[string key]
{
[Token(Token = "0x60015E4")]
[Address(RVA = "0x4A8420", Offset = "0x4A7220", VA = "0x1804A8420", Slot = "5")]
get
{
return null;
}
[Token(Token = "0x60015E5")]
[Address(RVA = "0x4A8510", Offset = "0x4A7310", VA = "0x1804A8510", Slot = "6")]
set
{
}
}
/// <summary>Gets a collection of keys in the <see cref="T:System.Collections.Specialized.StringDictionary" />.</summary>
/// <returns>An <see cref="T:System.Collections.ICollection" /> that provides the keys in the <see cref="T:System.Collections.Specialized.StringDictionary" />.</returns>
// Token: 0x1700048B RID: 1163
// (get) Token: 0x060015E6 RID: 5606 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700048B")]
public virtual ICollection Keys
{
[Token(Token = "0x60015E6")]
[Address(RVA = "0x4A7D50", Offset = "0x4A6B50", VA = "0x1804A7D50", Slot = "7")]
get
{
return null;
}
}
/// <summary>Adds an entry with the specified key and value into the <see cref="T:System.Collections.Specialized.StringDictionary" />.</summary>
/// <param name="key">The key of the entry to add.</param>
/// <param name="value">The value of the entry to add. The value can be <see langword="null" />.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="key" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentException">An entry with the same key already exists in the <see cref="T:System.Collections.Specialized.StringDictionary" />.</exception>
/// <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Specialized.StringDictionary" /> is read-only.</exception>
// Token: 0x060015E7 RID: 5607 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015E7")]
[Address(RVA = "0x4A8270", Offset = "0x4A7070", VA = "0x1804A8270", Slot = "8")]
public virtual void Add(string key, string value)
{
}
/// <summary>Returns an enumerator that iterates through the string dictionary.</summary>
/// <returns>An <see cref="T:System.Collections.IEnumerator" /> that iterates through the string dictionary.</returns>
// Token: 0x060015E8 RID: 5608 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60015E8")]
[Address(RVA = "0x4A7C00", Offset = "0x4A6A00", VA = "0x1804A7C00", Slot = "9")]
public virtual IEnumerator GetEnumerator()
{
return null;
}
/// <summary>Removes the entry with the specified key from the string dictionary.</summary>
/// <param name="key">The key of the entry to remove.</param>
/// <exception cref="T:System.ArgumentNullException">The key is <see langword="null" />.</exception>
/// <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Specialized.StringDictionary" /> is read-only.</exception>
// Token: 0x060015E9 RID: 5609 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015E9")]
[Address(RVA = "0x4A8350", Offset = "0x4A7150", VA = "0x1804A8350", Slot = "10")]
public virtual void Remove(string key)
{
}
// Token: 0x04000E45 RID: 3653
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000E45")]
internal Hashtable contents;
}
}
@@ -0,0 +1,54 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides data for the <see cref="E:System.Windows.Forms.BindingSource.AddingNew" /> event.</summary>
// Token: 0x020000DC RID: 220
[Token(Token = "0x20000DC")]
public class AddingNewEventArgs : EventArgs
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AddingNewEventArgs" /> class using no parameters.</summary>
// Token: 0x06000529 RID: 1321 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000529")]
[Address(RVA = "0x48FF00", Offset = "0x48ED00", VA = "0x18048FF00")]
public AddingNewEventArgs()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AddingNewEventArgs" /> class using the specified object as the new item.</summary>
/// <param name="newObject">An <see cref="T:System.Object" /> to use as the new item value.</param>
// Token: 0x0600052A RID: 1322 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600052A")]
[Address(RVA = "0x48FF60", Offset = "0x48ED60", VA = "0x18048FF60")]
public AddingNewEventArgs(object newObject)
{
}
/// <summary>Gets or sets the object to be added to the binding list.</summary>
/// <returns>The <see cref="T:System.Object" /> to be added as a new item to the associated collection.</returns>
// Token: 0x170000CE RID: 206
// (get) Token: 0x0600052B RID: 1323 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x0600052C RID: 1324 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170000CE")]
public object NewObject
{
[Token(Token = "0x600052B")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
[Token(Token = "0x600052C")]
[Address(RVA = "0x3F7200", Offset = "0x3F6000", VA = "0x1803F7200")]
set
{
}
}
// Token: 0x0400042F RID: 1071
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400042F")]
private object newObject;
}
}
@@ -0,0 +1,13 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.BindingSource.AddingNew" /> event.</summary>
/// <param name="sender">The source of the event, typically a data container or data-bound collection.</param>
/// <param name="e">A <see cref="T:System.ComponentModel.AddingNewEventArgs" /> that contains the event data.</param>
// Token: 0x020000DD RID: 221
// (Invoke) Token: 0x0600052E RID: 1326
[Token(Token = "0x20000DD")]
public delegate void AddingNewEventHandler(object sender, AddingNewEventArgs e);
}
@@ -0,0 +1,154 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies the value to pass to a property to cause the property to get its value from another source. This is known as ambience. This class cannot be inherited.</summary>
// Token: 0x020000DE RID: 222
[Token(Token = "0x20000DE")]
[AttributeUsage(AttributeTargets.All)]
public sealed class AmbientValueAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AmbientValueAttribute" /> class, given the value and its type.</summary>
/// <param name="type">The <see cref="T:System.Type" /> of the <paramref name="value" /> parameter.</param>
/// <param name="value">The value for this attribute.</param>
// Token: 0x06000531 RID: 1329 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000531")]
[Address(RVA = "0x490600", Offset = "0x48F400", VA = "0x180490600")]
public AmbientValueAttribute(Type type, string value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AmbientValueAttribute" /> class, given a Unicode character for its value.</summary>
/// <param name="value">The value of this attribute.</param>
// Token: 0x06000532 RID: 1330 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000532")]
[Address(RVA = "0x490780", Offset = "0x48F580", VA = "0x180490780")]
public AmbientValueAttribute(char value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AmbientValueAttribute" /> class, given an 8-bit unsigned integer for its value.</summary>
/// <param name="value">The value of this attribute.</param>
// Token: 0x06000533 RID: 1331 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000533")]
[Address(RVA = "0x4906C0", Offset = "0x48F4C0", VA = "0x1804906C0")]
public AmbientValueAttribute(byte value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AmbientValueAttribute" /> class, given a 16-bit signed integer for its value.</summary>
/// <param name="value">The value of this attribute.</param>
// Token: 0x06000534 RID: 1332 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000534")]
[Address(RVA = "0x490840", Offset = "0x48F640", VA = "0x180490840")]
public AmbientValueAttribute(short value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AmbientValueAttribute" /> class, given a 32-bit signed integer for its value.</summary>
/// <param name="value">The value of this attribute.</param>
// Token: 0x06000535 RID: 1333 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000535")]
[Address(RVA = "0x4908A0", Offset = "0x48F6A0", VA = "0x1804908A0")]
public AmbientValueAttribute(int value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AmbientValueAttribute" /> class, given a 64-bit signed integer for its value.</summary>
/// <param name="value">The value of this attribute.</param>
// Token: 0x06000536 RID: 1334 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000536")]
[Address(RVA = "0x4905A0", Offset = "0x48F3A0", VA = "0x1804905A0")]
public AmbientValueAttribute(long value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AmbientValueAttribute" /> class, given a single-precision floating point number for its value.</summary>
/// <param name="value">The value of this attribute.</param>
// Token: 0x06000537 RID: 1335 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000537")]
[Address(RVA = "0x490540", Offset = "0x48F340", VA = "0x180490540")]
public AmbientValueAttribute(float value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AmbientValueAttribute" /> class, given a double-precision floating-point number for its value.</summary>
/// <param name="value">The value of this attribute.</param>
// Token: 0x06000538 RID: 1336 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000538")]
[Address(RVA = "0x4907E0", Offset = "0x48F5E0", VA = "0x1804907E0")]
public AmbientValueAttribute(double value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AmbientValueAttribute" /> class, given a Boolean value for its value.</summary>
/// <param name="value">The value of this attribute.</param>
// Token: 0x06000539 RID: 1337 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000539")]
[Address(RVA = "0x490720", Offset = "0x48F520", VA = "0x180490720")]
public AmbientValueAttribute(bool value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AmbientValueAttribute" /> class, given a string for its value.</summary>
/// <param name="value">The value of this attribute.</param>
// Token: 0x0600053A RID: 1338 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600053A")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
public AmbientValueAttribute(string value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AmbientValueAttribute" /> class, given an object for its value.</summary>
/// <param name="value">The value of this attribute.</param>
// Token: 0x0600053B RID: 1339 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600053B")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
public AmbientValueAttribute(object value)
{
}
/// <summary>Gets the object that is the value of this <see cref="T:System.ComponentModel.AmbientValueAttribute" />.</summary>
/// <returns>The object that is the value of this <see cref="T:System.ComponentModel.AmbientValueAttribute" />.</returns>
// Token: 0x170000CF RID: 207
// (get) Token: 0x0600053C RID: 1340 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000CF")]
public object Value
{
[Token(Token = "0x600053C")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
/// <summary>Determines whether the specified <see cref="T:System.ComponentModel.AmbientValueAttribute" /> is equal to the current <see cref="T:System.ComponentModel.AmbientValueAttribute" />.</summary>
/// <param name="obj">The <see cref="T:System.ComponentModel.AmbientValueAttribute" /> to compare with the current <see cref="T:System.ComponentModel.AmbientValueAttribute" />.</param>
/// <returns>
/// <see langword="true" /> if the specified <see cref="T:System.ComponentModel.AmbientValueAttribute" /> is equal to the current <see cref="T:System.ComponentModel.AmbientValueAttribute" />; otherwise, <see langword="false" />.</returns>
// Token: 0x0600053D RID: 1341 RVA: 0x00004128 File Offset: 0x00002328
[Token(Token = "0x600053D")]
[Address(RVA = "0x490490", Offset = "0x48F290", VA = "0x180490490", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A hash code for the current <see cref="T:System.ComponentModel.AmbientValueAttribute" />.</returns>
// Token: 0x0600053E RID: 1342 RVA: 0x00004140 File Offset: 0x00002340
[Token(Token = "0x600053E")]
[Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x04000430 RID: 1072
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000430")]
private readonly object value;
}
}
+94
View File
@@ -0,0 +1,94 @@
using System;
using System.Globalization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides a type converter to convert <see cref="T:System.Array" /> objects to and from various other representations.</summary>
// Token: 0x020000DF RID: 223
[Token(Token = "0x20000DF")]
public class ArrayConverter : CollectionConverter
{
/// <summary>Converts the given value object to the specified destination type.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="culture">The culture into which <paramref name="value" /> will be converted.</param>
/// <param name="value">The <see cref="T:System.Object" /> to convert.</param>
/// <param name="destinationType">The <see cref="T:System.Type" /> to convert the value to.</param>
/// <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="destinationType" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
// Token: 0x0600053F RID: 1343 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600053F")]
[Address(RVA = "0x490900", Offset = "0x48F700", VA = "0x180490900", Slot = "7")]
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
{
return null;
}
/// <summary>Gets a collection of properties for the type of array specified by the value parameter.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="value">An <see cref="T:System.Object" /> that specifies the type of array to get the properties for.</param>
/// <param name="attributes">An array of type <see cref="T:System.Attribute" /> that will be used as a filter.</param>
/// <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> with the properties that are exposed for an array, or <see langword="null" /> if there are no properties.</returns>
// Token: 0x06000540 RID: 1344 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000540")]
[Address(RVA = "0x490C00", Offset = "0x48FA00", VA = "0x180490C00", Slot = "10")]
public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes)
{
return null;
}
/// <summary>Gets a value indicating whether this object supports properties.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <returns>
/// <see langword="true" /> because <see cref="M:System.ComponentModel.ArrayConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])" /> should be called to find the properties of this object. This method never returns <see langword="false" />.</returns>
// Token: 0x06000541 RID: 1345 RVA: 0x00004158 File Offset: 0x00002358
[Token(Token = "0x6000541")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "11")]
public override bool GetPropertiesSupported(ITypeDescriptorContext context)
{
return default(bool);
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ArrayConverter" /> class.</summary>
// Token: 0x06000542 RID: 1346 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000542")]
[Address(RVA = "0x490E60", Offset = "0x48FC60", VA = "0x180490E60")]
public ArrayConverter()
{
}
// Token: 0x020000E0 RID: 224
[Token(Token = "0x20000E0")]
private class ArrayPropertyDescriptor : TypeConverter.SimplePropertyDescriptor
{
// Token: 0x06000543 RID: 1347 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000543")]
[Address(RVA = "0x491460", Offset = "0x490260", VA = "0x180491460")]
public ArrayPropertyDescriptor(Type arrayType, Type elementType, int index)
{
}
// Token: 0x06000544 RID: 1348 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000544")]
[Address(RVA = "0x491210", Offset = "0x490010", VA = "0x180491210", Slot = "26")]
public override object GetValue(object instance)
{
return null;
}
// Token: 0x06000545 RID: 1349 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000545")]
[Address(RVA = "0x491310", Offset = "0x490110", VA = "0x180491310", Slot = "30")]
public override void SetValue(object instance, object value)
{
}
// Token: 0x04000431 RID: 1073
[FieldOffset(Offset = "0x98")]
[Token(Token = "0x4000431")]
private int index;
}
}
}
@@ -0,0 +1,61 @@
using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.ComponentModel
{
// Token: 0x020000E1 RID: 225
[Token(Token = "0x20000E1")]
internal class ArraySubsetEnumerator : IEnumerator
{
// Token: 0x06000546 RID: 1350 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000546")]
[Address(RVA = "0x491540", Offset = "0x490340", VA = "0x180491540")]
public ArraySubsetEnumerator(Array array, int count)
{
}
// Token: 0x06000547 RID: 1351 RVA: 0x00004170 File Offset: 0x00002370
[Token(Token = "0x6000547")]
[Address(RVA = "0x491510", Offset = "0x490310", VA = "0x180491510", Slot = "4")]
public bool MoveNext()
{
return default(bool);
}
// Token: 0x06000548 RID: 1352 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000548")]
[Address(RVA = "0x491530", Offset = "0x490330", VA = "0x180491530", Slot = "6")]
public void Reset()
{
}
// Token: 0x170000D0 RID: 208
// (get) Token: 0x06000549 RID: 1353 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000D0")]
public object Current
{
[Token(Token = "0x6000549")]
[Address(RVA = "0x491580", Offset = "0x490380", VA = "0x180491580", Slot = "5")]
get
{
return null;
}
}
// Token: 0x04000432 RID: 1074
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000432")]
private Array array;
// Token: 0x04000433 RID: 1075
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000433")]
private int total;
// Token: 0x04000434 RID: 1076
[FieldOffset(Offset = "0x1C")]
[Token(Token = "0x4000434")]
private int current;
}
}
@@ -0,0 +1,107 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides data for the MethodName<see langword="Completed" /> event.</summary>
// Token: 0x020000E2 RID: 226
[Token(Token = "0x20000E2")]
public class AsyncCompletedEventArgs : EventArgs
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AsyncCompletedEventArgs" /> class.</summary>
// Token: 0x0600054A RID: 1354 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600054A")]
[Address(RVA = "0x4916E0", Offset = "0x4904E0", VA = "0x1804916E0")]
[Obsolete]
[Obsolete("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
[EditorBrowsable(EditorBrowsableState.Never)]
public AsyncCompletedEventArgs()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AsyncCompletedEventArgs" /> class.</summary>
/// <param name="error">Any error that occurred during the asynchronous operation.</param>
/// <param name="cancelled">A value indicating whether the asynchronous operation was canceled.</param>
/// <param name="userState">The optional user-supplied state object passed to the <see cref="M:System.ComponentModel.BackgroundWorker.RunWorkerAsync(System.Object)" /> method.</param>
// Token: 0x0600054B RID: 1355 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600054B")]
[Address(RVA = "0x491740", Offset = "0x490540", VA = "0x180491740")]
public AsyncCompletedEventArgs(Exception error, bool cancelled, object userState)
{
}
/// <summary>Gets a value indicating whether an asynchronous operation has been canceled.</summary>
/// <returns>
/// <see langword="true" /> if the background operation has been canceled; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
// Token: 0x170000D1 RID: 209
// (get) Token: 0x0600054C RID: 1356 RVA: 0x00004188 File Offset: 0x00002388
[Token(Token = "0x170000D1")]
[SRDescription("True if operation was cancelled.")]
public bool Cancelled
{
[Token(Token = "0x600054C")]
[Address(RVA = "0x42C2C0", Offset = "0x42B0C0", VA = "0x18042C2C0")]
get
{
return default(bool);
}
}
/// <summary>Gets a value indicating which error occurred during an asynchronous operation.</summary>
/// <returns>An <see cref="T:System.Exception" /> instance, if an error occurred during an asynchronous operation; otherwise <see langword="null" />.</returns>
// Token: 0x170000D2 RID: 210
// (get) Token: 0x0600054D RID: 1357 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000D2")]
[SRDescription("Exception that occurred during operation. Null if no error.")]
public Exception Error
{
[Token(Token = "0x600054D")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
/// <summary>Gets the unique identifier for the asynchronous task.</summary>
/// <returns>An object reference that uniquely identifies the asynchronous task; otherwise, <see langword="null" /> if no value has been set.</returns>
// Token: 0x170000D3 RID: 211
// (get) Token: 0x0600054E RID: 1358 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000D3")]
[SRDescription("User-supplied state to identify operation.")]
public object UserState
{
[Token(Token = "0x600054E")]
[Address(RVA = "0x3F6400", Offset = "0x3F5200", VA = "0x1803F6400")]
get
{
return null;
}
}
/// <summary>Raises a user-supplied exception if an asynchronous operation failed.</summary>
/// <exception cref="T:System.InvalidOperationException">The <see cref="P:System.ComponentModel.AsyncCompletedEventArgs.Cancelled" /> property is <see langword="true" />.</exception>
/// <exception cref="T:System.Reflection.TargetInvocationException">The <see cref="P:System.ComponentModel.AsyncCompletedEventArgs.Error" /> property has been set by the asynchronous operation. The <see cref="P:System.Exception.InnerException" /> property holds a reference to <see cref="P:System.ComponentModel.AsyncCompletedEventArgs.Error" />.</exception>
// Token: 0x0600054F RID: 1359 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600054F")]
[Address(RVA = "0x491600", Offset = "0x490400", VA = "0x180491600")]
protected void RaiseExceptionIfNecessary()
{
}
// Token: 0x04000435 RID: 1077
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000435")]
private readonly Exception error;
// Token: 0x04000436 RID: 1078
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000436")]
private readonly bool cancelled;
// Token: 0x04000437 RID: 1079
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000437")]
private readonly object userState;
}
}
@@ -0,0 +1,13 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Represents the method that will handle the MethodName<see langword="Completed" /> event of an asynchronous operation.</summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">An <see cref="T:System.ComponentModel.AsyncCompletedEventArgs" /> that contains the event data.</param>
// Token: 0x020000E3 RID: 227
// (Invoke) Token: 0x06000551 RID: 1361
[Token(Token = "0x20000E3")]
public delegate void AsyncCompletedEventHandler(object sender, AsyncCompletedEventArgs e);
}
+145
View File
@@ -0,0 +1,145 @@
using System;
using System.Threading;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Tracks the lifetime of an asynchronous operation.</summary>
// Token: 0x020000E4 RID: 228
[Token(Token = "0x20000E4")]
public sealed class AsyncOperation
{
// Token: 0x06000554 RID: 1364 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000554")]
[Address(RVA = "0x491D20", Offset = "0x490B20", VA = "0x180491D20")]
private AsyncOperation(object userSuppliedState, SynchronizationContext syncContext)
{
}
/// <summary>Finalizes the asynchronous operation.</summary>
// Token: 0x06000555 RID: 1365 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000555")]
[Address(RVA = "0x4919C0", Offset = "0x4907C0", VA = "0x1804919C0", Slot = "1")]
protected override void Finalize()
{
}
/// <summary>Gets or sets an object used to uniquely identify an asynchronous operation.</summary>
/// <returns>The state object passed to the asynchronous method invocation.</returns>
// Token: 0x170000D4 RID: 212
// (get) Token: 0x06000556 RID: 1366 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000D4")]
public object UserSuppliedState
{
[Token(Token = "0x6000556")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
get
{
return null;
}
}
/// <summary>Gets the <see cref="T:System.Threading.SynchronizationContext" /> object that was passed to the constructor.</summary>
/// <returns>The <see cref="T:System.Threading.SynchronizationContext" /> object that was passed to the constructor.</returns>
// Token: 0x170000D5 RID: 213
// (get) Token: 0x06000557 RID: 1367 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000D5")]
public SynchronizationContext SynchronizationContext
{
[Token(Token = "0x6000557")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
/// <summary>Invokes a delegate on the thread or context appropriate for the application model.</summary>
/// <param name="d">A <see cref="T:System.Threading.SendOrPostCallback" /> object that wraps the delegate to be called when the operation ends.</param>
/// <param name="arg">An argument for the delegate contained in the <paramref name="d" /> parameter.</param>
/// <exception cref="T:System.InvalidOperationException">The <see cref="M:System.ComponentModel.AsyncOperation.PostOperationCompleted(System.Threading.SendOrPostCallback,System.Object)" /> method has been called previously for this task.</exception>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="d" /> is <see langword="null" />.</exception>
// Token: 0x06000558 RID: 1368 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000558")]
[Address(RVA = "0x491B60", Offset = "0x490960", VA = "0x180491B60")]
public void Post(SendOrPostCallback d, object arg)
{
}
/// <summary>Ends the lifetime of an asynchronous operation.</summary>
/// <param name="d">A <see cref="T:System.Threading.SendOrPostCallback" /> object that wraps the delegate to be called when the operation ends.</param>
/// <param name="arg">An argument for the delegate contained in the <paramref name="d" /> parameter.</param>
/// <exception cref="T:System.InvalidOperationException">
/// <see cref="M:System.ComponentModel.AsyncOperation.OperationCompleted" /> has been called previously for this task.</exception>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="d" /> is <see langword="null" />.</exception>
// Token: 0x06000559 RID: 1369 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000559")]
[Address(RVA = "0x491B40", Offset = "0x490940", VA = "0x180491B40")]
public void PostOperationCompleted(SendOrPostCallback d, object arg)
{
}
/// <summary>Ends the lifetime of an asynchronous operation.</summary>
/// <exception cref="T:System.InvalidOperationException">
/// <see cref="M:System.ComponentModel.AsyncOperation.OperationCompleted" /> has been called previously for this task.</exception>
// Token: 0x0600055A RID: 1370 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600055A")]
[Address(RVA = "0x491B20", Offset = "0x490920", VA = "0x180491B20")]
public void OperationCompleted()
{
}
// Token: 0x0600055B RID: 1371 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600055B")]
[Address(RVA = "0x491A50", Offset = "0x490850", VA = "0x180491A50")]
private void OperationCompletedCore()
{
}
// Token: 0x0600055C RID: 1372 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600055C")]
[Address(RVA = "0x491CA0", Offset = "0x490AA0", VA = "0x180491CA0")]
private void VerifyNotCompleted()
{
}
// Token: 0x0600055D RID: 1373 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600055D")]
[Address(RVA = "0x491C20", Offset = "0x490A20", VA = "0x180491C20")]
private void VerifyDelegateNotNull(SendOrPostCallback d)
{
}
// Token: 0x0600055E RID: 1374 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600055E")]
[Address(RVA = "0x491930", Offset = "0x490730", VA = "0x180491930")]
internal static AsyncOperation CreateOperation(object userSuppliedState, SynchronizationContext syncContext)
{
return null;
}
// Token: 0x0600055F RID: 1375 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600055F")]
[Address(RVA = "0x491D80", Offset = "0x490B80", VA = "0x180491D80")]
internal AsyncOperation()
{
}
// Token: 0x04000438 RID: 1080
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000438")]
private SynchronizationContext syncContext;
// Token: 0x04000439 RID: 1081
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000439")]
private object userSuppliedState;
// Token: 0x0400043A RID: 1082
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x400043A")]
private bool alreadyCompleted;
}
}
@@ -0,0 +1,45 @@
using System;
using System.Threading;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides concurrency management for classes that support asynchronous method calls. This class cannot be inherited.</summary>
// Token: 0x020000E5 RID: 229
[Token(Token = "0x20000E5")]
public static class AsyncOperationManager
{
/// <summary>Returns an <see cref="T:System.ComponentModel.AsyncOperation" /> for tracking the duration of a particular asynchronous operation.</summary>
/// <param name="userSuppliedState">An object used to associate a piece of client state, such as a task ID, with a particular asynchronous operation.</param>
/// <returns>An <see cref="T:System.ComponentModel.AsyncOperation" /> that you can use to track the duration of an asynchronous method invocation.</returns>
// Token: 0x06000560 RID: 1376 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000560")]
[Address(RVA = "0x4917D0", Offset = "0x4905D0", VA = "0x1804917D0")]
public static AsyncOperation CreateOperation(object userSuppliedState)
{
return null;
}
/// <summary>Gets or sets the synchronization context for the asynchronous operation.</summary>
/// <returns>The synchronization context for the asynchronous operation.</returns>
// Token: 0x170000D6 RID: 214
// (get) Token: 0x06000561 RID: 1377 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06000562 RID: 1378 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170000D6")]
[EditorBrowsable(EditorBrowsableState.Advanced)]
public static SynchronizationContext SynchronizationContext
{
[Token(Token = "0x6000561")]
[Address(RVA = "0x4918B0", Offset = "0x4906B0", VA = "0x1804918B0")]
get
{
return null;
}
[Token(Token = "0x6000562")]
[Address(RVA = "0x491920", Offset = "0x490720", VA = "0x180491920")]
set
{
}
}
}
}
@@ -0,0 +1,289 @@
using System;
using System.Collections;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Represents a collection of attributes.</summary>
// Token: 0x020000E6 RID: 230
[Token(Token = "0x20000E6")]
[ComVisible(true)]
public class AttributeCollection : ICollection, IEnumerable
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AttributeCollection" /> class.</summary>
/// <param name="attributes">An array of type <see cref="T:System.Attribute" /> that provides the attributes for this collection.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="attributes" /> is <see langword="null" />.</exception>
// Token: 0x06000563 RID: 1379 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000563")]
[Address(RVA = "0x492AC0", Offset = "0x4918C0", VA = "0x180492AC0")]
public AttributeCollection(params Attribute[] attributes)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AttributeCollection" /> class.</summary>
// Token: 0x06000564 RID: 1380 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000564")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
protected AttributeCollection()
{
}
/// <summary>Creates a new <see cref="T:System.ComponentModel.AttributeCollection" /> from an existing <see cref="T:System.ComponentModel.AttributeCollection" />.</summary>
/// <param name="existing">An <see cref="T:System.ComponentModel.AttributeCollection" /> from which to create the copy.</param>
/// <param name="newAttributes">An array of type <see cref="T:System.Attribute" /> that provides the attributes for this collection. Can be <see langword="null" />.</param>
/// <returns>A new <see cref="T:System.ComponentModel.AttributeCollection" /> that is a copy of <paramref name="existing" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="existing" /> is <see langword="null" />.</exception>
// Token: 0x06000565 RID: 1381 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000565")]
[Address(RVA = "0x491F80", Offset = "0x490D80", VA = "0x180491F80")]
public static AttributeCollection FromExisting(AttributeCollection existing, params Attribute[] newAttributes)
{
return null;
}
/// <summary>Gets the attribute collection.</summary>
/// <returns>The attribute collection.</returns>
// Token: 0x170000D7 RID: 215
// (get) Token: 0x06000566 RID: 1382 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000D7")]
protected virtual Attribute[] Attributes
{
[Token(Token = "0x6000566")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20", Slot = "9")]
get
{
return null;
}
}
/// <summary>Gets the number of attributes.</summary>
/// <returns>The number of attributes.</returns>
// Token: 0x170000D8 RID: 216
// (get) Token: 0x06000567 RID: 1383 RVA: 0x000041A0 File Offset: 0x000023A0
[Token(Token = "0x170000D8")]
public int Count
{
[Token(Token = "0x6000567")]
[Address(RVA = "0x492A10", Offset = "0x491810", VA = "0x180492A10")]
get
{
return 0;
}
}
/// <summary>Gets the attribute with the specified index number.</summary>
/// <param name="index">The zero-based index of <see cref="T:System.ComponentModel.AttributeCollection" />.</param>
/// <returns>The <see cref="T:System.Attribute" /> with the specified index number.</returns>
// Token: 0x170000D9 RID: 217
[Token(Token = "0x170000D9")]
public virtual Attribute this[int index]
{
[Token(Token = "0x6000568")]
[Address(RVA = "0x4930F0", Offset = "0x491EF0", VA = "0x1804930F0", Slot = "10")]
get
{
return null;
}
}
/// <summary>Gets the attribute with the specified type.</summary>
/// <param name="attributeType">The <see cref="T:System.Type" /> of the <see cref="T:System.Attribute" /> to get from the collection.</param>
/// <returns>The <see cref="T:System.Attribute" /> with the specified type or, if the attribute does not exist, the default value for the attribute type.</returns>
// Token: 0x170000DA RID: 218
[Token(Token = "0x170000DA")]
public virtual Attribute this[Type attributeType]
{
[Token(Token = "0x6000569")]
[Address(RVA = "0x492B90", Offset = "0x491990", VA = "0x180492B90", Slot = "11")]
get
{
return null;
}
}
/// <summary>Determines whether this collection of attributes has the specified attribute.</summary>
/// <param name="attribute">An <see cref="T:System.Attribute" /> to find in the collection.</param>
/// <returns>
/// <see langword="true" /> if the collection contains the attribute or is the default attribute for the type of attribute; otherwise, <see langword="false" />.</returns>
// Token: 0x0600056A RID: 1386 RVA: 0x000041B8 File Offset: 0x000023B8
[Token(Token = "0x600056A")]
[Address(RVA = "0x491DB0", Offset = "0x490BB0", VA = "0x180491DB0")]
public bool Contains(Attribute attribute)
{
return default(bool);
}
/// <summary>Determines whether this attribute collection contains all the specified attributes in the attribute array.</summary>
/// <param name="attributes">An array of type <see cref="T:System.Attribute" /> to find in the collection.</param>
/// <returns>
/// <see langword="true" /> if the collection contains all the attributes; otherwise, <see langword="false" />.</returns>
// Token: 0x0600056B RID: 1387 RVA: 0x000041D0 File Offset: 0x000023D0
[Token(Token = "0x600056B")]
[Address(RVA = "0x491E30", Offset = "0x490C30", VA = "0x180491E30")]
public bool Contains(Attribute[] attributes)
{
return default(bool);
}
/// <summary>Returns the default <see cref="T:System.Attribute" /> of a given <see cref="T:System.Type" />.</summary>
/// <param name="attributeType">The <see cref="T:System.Type" /> of the attribute to retrieve.</param>
/// <returns>The default <see cref="T:System.Attribute" /> of a given <paramref name="attributeType" />.</returns>
// Token: 0x0600056C RID: 1388 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600056C")]
[Address(RVA = "0x492380", Offset = "0x491180", VA = "0x180492380")]
protected Attribute GetDefaultAttribute(Type attributeType)
{
return null;
}
/// <summary>Gets an enumerator for this collection.</summary>
/// <returns>An enumerator of type <see cref="T:System.Collections.IEnumerator" />.</returns>
// Token: 0x0600056D RID: 1389 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600056D")]
[Address(RVA = "0x492800", Offset = "0x491600", VA = "0x180492800")]
public IEnumerator GetEnumerator()
{
return null;
}
/// <summary>Determines whether a specified attribute is the same as an attribute in the collection.</summary>
/// <param name="attribute">An instance of <see cref="T:System.Attribute" /> to compare with the attributes in this collection.</param>
/// <returns>
/// <see langword="true" /> if the attribute is contained within the collection and has the same value as the attribute in the collection; otherwise, <see langword="false" />.</returns>
// Token: 0x0600056E RID: 1390 RVA: 0x000041E8 File Offset: 0x000023E8
[Token(Token = "0x600056E")]
[Address(RVA = "0x492940", Offset = "0x491740", VA = "0x180492940")]
public bool Matches(Attribute attribute)
{
return default(bool);
}
/// <summary>Determines whether the attributes in the specified array are the same as the attributes in the collection.</summary>
/// <param name="attributes">An array of <see cref="T:System.CodeDom.MemberAttributes" /> to compare with the attributes in this collection.</param>
/// <returns>
/// <see langword="true" /> if all the attributes in the array are contained in the collection and have the same values as the attributes in the collection; otherwise, <see langword="false" />.</returns>
// Token: 0x0600056F RID: 1391 RVA: 0x00004200 File Offset: 0x00002400
[Token(Token = "0x600056F")]
[Address(RVA = "0x492830", Offset = "0x491630", VA = "0x180492830")]
public bool Matches(Attribute[] attributes)
{
return default(bool);
}
/// <summary>Gets the number of elements contained in the collection.</summary>
/// <returns>The number of elements contained in the collection.</returns>
// Token: 0x170000DB RID: 219
// (get) Token: 0x06000570 RID: 1392 RVA: 0x00004218 File Offset: 0x00002418
[Token(Token = "0x170000DB")]
int ICollection.Count
{
[Token(Token = "0x6000570")]
[Address(RVA = "0x492A10", Offset = "0x491810", VA = "0x180492A10", 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: 0x170000DC RID: 220
// (get) Token: 0x06000571 RID: 1393 RVA: 0x00004230 File Offset: 0x00002430
[Token(Token = "0x170000DC")]
bool ICollection.IsSynchronized
{
[Token(Token = "0x6000571")]
[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: 0x170000DD RID: 221
// (get) Token: 0x06000572 RID: 1394 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000DD")]
object ICollection.SyncRoot
{
[Token(Token = "0x6000572")]
[Address(RVA = "0x43E630", Offset = "0x43D430", VA = "0x18043E630", Slot = "6")]
get
{
return null;
}
}
/// <summary>Copies the collection to an array, starting at the specified index.</summary>
/// <param name="array">The <see cref="T:System.Array" /> to copy the collection to.</param>
/// <param name="index">The index to start from.</param>
// Token: 0x06000573 RID: 1395 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000573")]
[Address(RVA = "0x491EF0", Offset = "0x490CF0", VA = "0x180491EF0", Slot = "4")]
public void CopyTo(Array array, int index)
{
}
/// <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: 0x06000574 RID: 1396 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000574")]
[Address(RVA = "0x492800", Offset = "0x491600", VA = "0x180492800", Slot = "8")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
/// <summary>Specifies an empty collection that you can use, rather than creating a new one. This field is read-only.</summary>
// Token: 0x0400043B RID: 1083
[Token(Token = "0x400043B")]
public static readonly AttributeCollection Empty;
// Token: 0x0400043C RID: 1084
[Token(Token = "0x400043C")]
private static Hashtable _defaultAttributes;
// Token: 0x0400043D RID: 1085
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x400043D")]
private Attribute[] _attributes;
// Token: 0x0400043E RID: 1086
[Token(Token = "0x400043E")]
private static object internalSyncObject;
// Token: 0x0400043F RID: 1087
[Token(Token = "0x400043F")]
private const int FOUND_TYPES_LIMIT = 5;
// Token: 0x04000440 RID: 1088
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000440")]
private AttributeCollection.AttributeEntry[] _foundAttributeTypes;
// Token: 0x04000441 RID: 1089
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000441")]
private int _index;
// Token: 0x020000E7 RID: 231
[Token(Token = "0x20000E7")]
private struct AttributeEntry
{
// Token: 0x04000442 RID: 1090
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000442")]
public Type type;
// Token: 0x04000443 RID: 1091
[global::Cpp2IlInjected.FieldOffset(Offset = "0x8")]
[Token(Token = "0x4000443")]
public int index;
}
}
}
@@ -0,0 +1,86 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Enables attribute redirection. This class cannot be inherited.</summary>
// Token: 0x020000E8 RID: 232
[Token(Token = "0x20000E8")]
[AttributeUsage(AttributeTargets.Property)]
public class AttributeProviderAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AttributeProviderAttribute" /> class with the given type name.</summary>
/// <param name="typeName">The name of the type to specify.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="typeName" /> is <see langword="null" />.</exception>
// Token: 0x06000576 RID: 1398 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000576")]
[Address(RVA = "0x4932E0", Offset = "0x4920E0", VA = "0x1804932E0")]
public AttributeProviderAttribute(string typeName)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AttributeProviderAttribute" /> class with the given type name and property name.</summary>
/// <param name="typeName">The name of the type to specify.</param>
/// <param name="propertyName">The name of the property for which attributes will be retrieved.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="propertyName" /> is <see langword="null" />.</exception>
// Token: 0x06000577 RID: 1399 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000577")]
[Address(RVA = "0x493140", Offset = "0x491F40", VA = "0x180493140")]
public AttributeProviderAttribute(string typeName, string propertyName)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.AttributeProviderAttribute" /> class with the given type.</summary>
/// <param name="type">The type to specify.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="type" /> is <see langword="null" />.</exception>
// Token: 0x06000578 RID: 1400 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000578")]
[Address(RVA = "0x493210", Offset = "0x492010", VA = "0x180493210")]
public AttributeProviderAttribute(Type type)
{
}
/// <summary>Gets the assembly qualified type name passed into the constructor.</summary>
/// <returns>The assembly qualified name of the type specified in the constructor.</returns>
// Token: 0x170000DE RID: 222
// (get) Token: 0x06000579 RID: 1401 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000DE")]
public string TypeName
{
[Token(Token = "0x6000579")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
/// <summary>Gets the name of the property for which attributes will be retrieved.</summary>
/// <returns>The name of the property for which attributes will be retrieved.</returns>
// Token: 0x170000DF RID: 223
// (get) Token: 0x0600057A RID: 1402 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000DF")]
public string PropertyName
{
[Token(Token = "0x600057A")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
get
{
return null;
}
}
// Token: 0x04000444 RID: 1092
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000444")]
private string _typeName;
// Token: 0x04000445 RID: 1093
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000445")]
private string _propertyName;
}
}
+322
View File
@@ -0,0 +1,322 @@
using System;
using System.Threading;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Executes an operation on a separate thread.</summary>
// Token: 0x020000E9 RID: 233
[Token(Token = "0x20000E9")]
[DefaultEvent("DoWork")]
[SRDescription("Executes an operation on a separate thread.")]
public class BackgroundWorker : Component
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.BackgroundWorker" /> class.</summary>
// Token: 0x0600057B RID: 1403 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600057B")]
[Address(RVA = "0x493EF0", Offset = "0x492CF0", VA = "0x180493EF0")]
public BackgroundWorker()
{
}
// Token: 0x0600057C RID: 1404 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600057C")]
[Address(RVA = "0x493360", Offset = "0x492160", VA = "0x180493360")]
private void AsyncOperationCompleted(object arg)
{
}
/// <summary>Gets a value indicating whether the application has requested cancellation of a background operation.</summary>
/// <returns>
/// <see langword="true" /> if the application has requested cancellation of a background operation; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
// Token: 0x170000E0 RID: 224
// (get) Token: 0x0600057D RID: 1405 RVA: 0x00004248 File Offset: 0x00002448
[Token(Token = "0x170000E0")]
[Browsable(false)]
[SRDescription("Has the user attempted to cancel the operation? To be accessed from DoWork event handler.")]
public bool CancellationPending
{
[Token(Token = "0x600057D")]
[Address(RVA = "0x494240", Offset = "0x493040", VA = "0x180494240")]
get
{
return default(bool);
}
}
/// <summary>Requests cancellation of a pending background operation.</summary>
/// <exception cref="T:System.InvalidOperationException">
/// <see cref="P:System.ComponentModel.BackgroundWorker.WorkerSupportsCancellation" /> is <see langword="false" />.</exception>
// Token: 0x0600057E RID: 1406 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600057E")]
[Address(RVA = "0x493410", Offset = "0x492210", VA = "0x180493410")]
public void CancelAsync()
{
}
/// <summary>Occurs when <see cref="M:System.ComponentModel.BackgroundWorker.RunWorkerAsync" /> is called.</summary>
// Token: 0x14000002 RID: 2
// (add) Token: 0x0600057F RID: 1407 RVA: 0x00002053 File Offset: 0x00000253
// (remove) Token: 0x06000580 RID: 1408 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x14000002")]
public event DoWorkEventHandler DoWork
{
[Token(Token = "0x600057F")]
[Address(RVA = "0x493FD0", Offset = "0x492DD0", VA = "0x180493FD0")]
add
{
}
[Token(Token = "0x6000580")]
[Address(RVA = "0x494280", Offset = "0x493080", VA = "0x180494280")]
remove
{
}
}
/// <summary>Gets a value indicating whether the <see cref="T:System.ComponentModel.BackgroundWorker" /> is running an asynchronous operation.</summary>
/// <returns>
/// <see langword="true" />, if the <see cref="T:System.ComponentModel.BackgroundWorker" /> is running an asynchronous operation; otherwise, <see langword="false" />.</returns>
// Token: 0x170000E1 RID: 225
// (get) Token: 0x06000581 RID: 1409 RVA: 0x00004260 File Offset: 0x00002460
[Token(Token = "0x170000E1")]
[Browsable(false)]
[SRDescription("Is the worker still currently working on a background operation?")]
public bool IsBusy
{
[Token(Token = "0x6000581")]
[Address(RVA = "0x494250", Offset = "0x493050", VA = "0x180494250")]
get
{
return default(bool);
}
}
/// <summary>Raises the <see cref="E:System.ComponentModel.BackgroundWorker.DoWork" /> event.</summary>
/// <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
// Token: 0x06000582 RID: 1410 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000582")]
[Address(RVA = "0x493490", Offset = "0x492290", VA = "0x180493490", Slot = "16")]
protected virtual void OnDoWork(DoWorkEventArgs e)
{
}
/// <summary>Raises the <see cref="E:System.ComponentModel.BackgroundWorker.RunWorkerCompleted" /> event.</summary>
/// <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
// Token: 0x06000583 RID: 1411 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000583")]
[Address(RVA = "0x493690", Offset = "0x492490", VA = "0x180493690", Slot = "17")]
protected virtual void OnRunWorkerCompleted(RunWorkerCompletedEventArgs e)
{
}
/// <summary>Raises the <see cref="E:System.ComponentModel.BackgroundWorker.ProgressChanged" /> event.</summary>
/// <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
// Token: 0x06000584 RID: 1412 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000584")]
[Address(RVA = "0x493590", Offset = "0x492390", VA = "0x180493590", Slot = "18")]
protected virtual void OnProgressChanged(ProgressChangedEventArgs e)
{
}
/// <summary>Occurs when <see cref="M:System.ComponentModel.BackgroundWorker.ReportProgress(System.Int32)" /> is called.</summary>
// Token: 0x14000003 RID: 3
// (add) Token: 0x06000585 RID: 1413 RVA: 0x00002053 File Offset: 0x00000253
// (remove) Token: 0x06000586 RID: 1414 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x14000003")]
public event ProgressChangedEventHandler ProgressChanged
{
[Token(Token = "0x6000585")]
[Address(RVA = "0x4940A0", Offset = "0x492EA0", VA = "0x1804940A0")]
add
{
}
[Token(Token = "0x6000586")]
[Address(RVA = "0x494350", Offset = "0x493150", VA = "0x180494350")]
remove
{
}
}
// Token: 0x06000587 RID: 1415 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000587")]
[Address(RVA = "0x493790", Offset = "0x492590", VA = "0x180493790")]
private void ProgressReporter(object arg)
{
}
/// <summary>Raises the <see cref="E:System.ComponentModel.BackgroundWorker.ProgressChanged" /> event.</summary>
/// <param name="percentProgress">The percentage, from 0 to 100, of the background operation that is complete.</param>
/// <exception cref="T:System.InvalidOperationException">The <see cref="P:System.ComponentModel.BackgroundWorker.WorkerReportsProgress" /> property is set to <see langword="false" />.</exception>
// Token: 0x06000588 RID: 1416 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000588")]
[Address(RVA = "0x493920", Offset = "0x492720", VA = "0x180493920")]
public void ReportProgress(int percentProgress)
{
}
/// <summary>Raises the <see cref="E:System.ComponentModel.BackgroundWorker.ProgressChanged" /> event.</summary>
/// <param name="percentProgress">The percentage, from 0 to 100, of the background operation that is complete.</param>
/// <param name="userState">The state object passed to <see cref="M:System.ComponentModel.BackgroundWorker.RunWorkerAsync(System.Object)" />.</param>
/// <exception cref="T:System.InvalidOperationException">The <see cref="P:System.ComponentModel.BackgroundWorker.WorkerReportsProgress" /> property is set to <see langword="false" />.</exception>
// Token: 0x06000589 RID: 1417 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000589")]
[Address(RVA = "0x493830", Offset = "0x492630", VA = "0x180493830")]
public void ReportProgress(int percentProgress, object userState)
{
}
/// <summary>Starts execution of a background operation.</summary>
/// <exception cref="T:System.InvalidOperationException">
/// <see cref="P:System.ComponentModel.BackgroundWorker.IsBusy" /> is <see langword="true" />.</exception>
// Token: 0x0600058A RID: 1418 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600058A")]
[Address(RVA = "0x493A10", Offset = "0x492810", VA = "0x180493A10")]
public void RunWorkerAsync()
{
}
/// <summary>Starts execution of a background operation.</summary>
/// <param name="argument">A parameter for use by the background operation to be executed in the <see cref="E:System.ComponentModel.BackgroundWorker.DoWork" /> event handler.</param>
/// <exception cref="T:System.InvalidOperationException">
/// <see cref="P:System.ComponentModel.BackgroundWorker.IsBusy" /> is <see langword="true" />.</exception>
// Token: 0x0600058B RID: 1419 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600058B")]
[Address(RVA = "0x493B90", Offset = "0x492990", VA = "0x180493B90")]
public void RunWorkerAsync(object argument)
{
}
/// <summary>Occurs when the background operation has completed, has been canceled, or has raised an exception.</summary>
// Token: 0x14000004 RID: 4
// (add) Token: 0x0600058C RID: 1420 RVA: 0x00002053 File Offset: 0x00000253
// (remove) Token: 0x0600058D RID: 1421 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x14000004")]
public event RunWorkerCompletedEventHandler RunWorkerCompleted
{
[Token(Token = "0x600058C")]
[Address(RVA = "0x494170", Offset = "0x492F70", VA = "0x180494170")]
add
{
}
[Token(Token = "0x600058D")]
[Address(RVA = "0x494420", Offset = "0x493220", VA = "0x180494420")]
remove
{
}
}
/// <summary>Gets or sets a value indicating whether the <see cref="T:System.ComponentModel.BackgroundWorker" /> can report progress updates.</summary>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.ComponentModel.BackgroundWorker" /> supports progress updates; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
// Token: 0x170000E2 RID: 226
// (get) Token: 0x0600058E RID: 1422 RVA: 0x00004278 File Offset: 0x00002478
// (set) Token: 0x0600058F RID: 1423 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170000E2")]
[SRDescription("Whether the worker will report progress.")]
[DefaultValue(false)]
[SRCategory("Asynchronous")]
public bool WorkerReportsProgress
{
[Token(Token = "0x600058E")]
[Address(RVA = "0x494260", Offset = "0x493060", VA = "0x180494260")]
get
{
return default(bool);
}
[Token(Token = "0x600058F")]
[Address(RVA = "0x4944F0", Offset = "0x4932F0", VA = "0x1804944F0")]
set
{
}
}
/// <summary>Gets or sets a value indicating whether the <see cref="T:System.ComponentModel.BackgroundWorker" /> supports asynchronous cancellation.</summary>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.ComponentModel.BackgroundWorker" /> supports cancellation; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
// Token: 0x170000E3 RID: 227
// (get) Token: 0x06000590 RID: 1424 RVA: 0x00004290 File Offset: 0x00002490
// (set) Token: 0x06000591 RID: 1425 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170000E3")]
[SRDescription("Whether the worker supports cancellation.")]
[DefaultValue(false)]
[SRCategory("Asynchronous")]
public bool WorkerSupportsCancellation
{
[Token(Token = "0x6000590")]
[Address(RVA = "0x494270", Offset = "0x493070", VA = "0x180494270")]
get
{
return default(bool);
}
[Token(Token = "0x6000591")]
[Address(RVA = "0x494500", Offset = "0x493300", VA = "0x180494500")]
set
{
}
}
// Token: 0x06000592 RID: 1426 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000592")]
[Address(RVA = "0x493D10", Offset = "0x492B10", VA = "0x180493D10")]
private void WorkerThreadStart(object argument)
{
}
// Token: 0x04000446 RID: 1094
[Token(Token = "0x4000446")]
private static readonly object doWorkKey;
// Token: 0x04000447 RID: 1095
[Token(Token = "0x4000447")]
private static readonly object runWorkerCompletedKey;
// Token: 0x04000448 RID: 1096
[Token(Token = "0x4000448")]
private static readonly object progressChangedKey;
// Token: 0x04000449 RID: 1097
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x4000449")]
private bool canCancelWorker;
// Token: 0x0400044A RID: 1098
[FieldOffset(Offset = "0x29")]
[Token(Token = "0x400044A")]
private bool workerReportsProgress;
// Token: 0x0400044B RID: 1099
[FieldOffset(Offset = "0x2A")]
[Token(Token = "0x400044B")]
private bool cancellationPending;
// Token: 0x0400044C RID: 1100
[FieldOffset(Offset = "0x2B")]
[Token(Token = "0x400044C")]
private bool isRunning;
// Token: 0x0400044D RID: 1101
[FieldOffset(Offset = "0x30")]
[Token(Token = "0x400044D")]
private AsyncOperation asyncOperation;
// Token: 0x0400044E RID: 1102
[FieldOffset(Offset = "0x38")]
[Token(Token = "0x400044E")]
private readonly BackgroundWorker.WorkerThreadStartDelegate threadStart;
// Token: 0x0400044F RID: 1103
[FieldOffset(Offset = "0x40")]
[Token(Token = "0x400044F")]
private readonly SendOrPostCallback operationCompleted;
// Token: 0x04000450 RID: 1104
[FieldOffset(Offset = "0x48")]
[Token(Token = "0x4000450")]
private readonly SendOrPostCallback progressReporter;
// Token: 0x020000EA RID: 234
// (Invoke) Token: 0x06000595 RID: 1429
[Token(Token = "0x20000EA")]
private delegate void WorkerThreadStartDelegate(object argument);
}
}
@@ -0,0 +1,130 @@
using System;
using System.Globalization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides a base type converter for nonfloating-point numerical types.</summary>
// Token: 0x020001AE RID: 430
[Token(Token = "0x20001AE")]
public abstract class BaseNumberConverter : TypeConverter
{
// Token: 0x17000229 RID: 553
// (get) Token: 0x06000BCE RID: 3022 RVA: 0x00006648 File Offset: 0x00004848
[Token(Token = "0x17000229")]
internal virtual bool AllowHex
{
[Token(Token = "0x6000BCE")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "16")]
get
{
return default(bool);
}
}
// Token: 0x1700022A RID: 554
// (get) Token: 0x06000BCF RID: 3023
[Token(Token = "0x1700022A")]
internal abstract Type TargetType
{
[Token(Token = "0x6000BCF")]
[Address(Slot = "17")]
get;
}
// Token: 0x06000BD0 RID: 3024
[Token(Token = "0x6000BD0")]
[Address(Slot = "18")]
internal abstract object FromString(string value, int radix);
// Token: 0x06000BD1 RID: 3025
[Token(Token = "0x6000BD1")]
[Address(Slot = "19")]
internal abstract object FromString(string value, NumberFormatInfo formatInfo);
// Token: 0x06000BD2 RID: 3026
[Token(Token = "0x6000BD2")]
[Address(Slot = "20")]
internal abstract object FromString(string value, CultureInfo culture);
// Token: 0x06000BD3 RID: 3027 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000BD3")]
[Address(RVA = "0x494B80", Offset = "0x493980", VA = "0x180494B80", Slot = "21")]
internal virtual Exception FromStringError(string failedText, Exception innerException)
{
return null;
}
// Token: 0x06000BD4 RID: 3028
[Token(Token = "0x6000BD4")]
[Address(Slot = "22")]
internal abstract string ToString(object value, NumberFormatInfo formatInfo);
/// <summary>Determines if this converter can convert an object in the given source type to the native type of the converter.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="sourceType">A <see cref="T:System.Type" /> that represents the type from which you want to convert.</param>
/// <returns>
/// <see langword="true" /> if this converter can perform the operation; otherwise, <see langword="false" />.</returns>
// Token: 0x06000BD5 RID: 3029 RVA: 0x00006660 File Offset: 0x00004860
[Token(Token = "0x6000BD5")]
[Address(RVA = "0x494510", Offset = "0x493310", VA = "0x180494510", Slot = "4")]
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
{
return default(bool);
}
/// <summary>Converts the given object to the converter's native type.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> that specifies the culture to represent the number.</param>
/// <param name="value">The object to convert.</param>
/// <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
/// <exception cref="T:System.Exception">
/// <paramref name="value" /> is not a valid value for the target type.</exception>
/// <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
// Token: 0x06000BD6 RID: 3030 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000BD6")]
[Address(RVA = "0x494600", Offset = "0x493400", VA = "0x180494600", Slot = "6")]
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
return null;
}
/// <summary>Converts the specified object to another type.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> that specifies the culture to represent the number.</param>
/// <param name="value">The object to convert.</param>
/// <param name="destinationType">The type to convert the object to.</param>
/// <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="destinationType" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
// Token: 0x06000BD7 RID: 3031 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000BD7")]
[Address(RVA = "0x494900", Offset = "0x493700", VA = "0x180494900", Slot = "7")]
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
{
return null;
}
/// <summary>Returns a value indicating whether this converter can convert an object to the given destination type using the context.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="t">A <see cref="T:System.Type" /> that represents the type to which you want to convert.</param>
/// <returns>
/// <see langword="true" /> if this converter can perform the operation; otherwise, <see langword="false" />.</returns>
// Token: 0x06000BD8 RID: 3032 RVA: 0x00006678 File Offset: 0x00004878
[Token(Token = "0x6000BD8")]
[Address(RVA = "0x4945C0", Offset = "0x4933C0", VA = "0x1804945C0", Slot = "5")]
public override bool CanConvertTo(ITypeDescriptorContext context, Type t)
{
return default(bool);
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.BaseNumberConverter" /> class.</summary>
// Token: 0x06000BD9 RID: 3033 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000BD9")]
[Address(RVA = "0x494D40", Offset = "0x493B40", VA = "0x180494D40")]
protected BaseNumberConverter()
{
}
}
}
+146
View File
@@ -0,0 +1,146 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies whether a member is typically used for binding. This class cannot be inherited.</summary>
// Token: 0x020000EC RID: 236
[Token(Token = "0x20000EC")]
[AttributeUsage(AttributeTargets.All)]
public sealed class BindableAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.BindableAttribute" /> class with a Boolean value.</summary>
/// <param name="bindable">
/// <see langword="true" /> to use property for binding; otherwise, <see langword="false" />.</param>
// Token: 0x0600059B RID: 1435 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600059B")]
[Address(RVA = "0x494F80", Offset = "0x493D80", VA = "0x180494F80")]
public BindableAttribute(bool bindable)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.BindableAttribute" /> class.</summary>
/// <param name="bindable">
/// <see langword="true" /> to use property for binding; otherwise, <see langword="false" />.</param>
/// <param name="direction">One of the <see cref="T:System.ComponentModel.BindingDirection" /> values.</param>
// Token: 0x0600059C RID: 1436 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600059C")]
[Address(RVA = "0x495040", Offset = "0x493E40", VA = "0x180495040")]
public BindableAttribute(bool bindable, BindingDirection direction)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.BindableAttribute" /> class with one of the <see cref="T:System.ComponentModel.BindableSupport" /> values.</summary>
/// <param name="flags">One of the <see cref="T:System.ComponentModel.BindableSupport" /> values.</param>
// Token: 0x0600059D RID: 1437 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600059D")]
[Address(RVA = "0x495000", Offset = "0x493E00", VA = "0x180495000")]
public BindableAttribute(BindableSupport flags)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.BindableAttribute" /> class.</summary>
/// <param name="flags">One of the <see cref="T:System.ComponentModel.BindableSupport" /> values.</param>
/// <param name="direction">One of the <see cref="T:System.ComponentModel.BindingDirection" /> values.</param>
// Token: 0x0600059E RID: 1438 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600059E")]
[Address(RVA = "0x494FB0", Offset = "0x493DB0", VA = "0x180494FB0")]
public BindableAttribute(BindableSupport flags, BindingDirection direction)
{
}
/// <summary>Gets a value indicating that a property is typically used for binding.</summary>
/// <returns>
/// <see langword="true" /> if the property is typically used for binding; otherwise, <see langword="false" />.</returns>
// Token: 0x170000E4 RID: 228
// (get) Token: 0x0600059F RID: 1439 RVA: 0x000042C0 File Offset: 0x000024C0
[Token(Token = "0x170000E4")]
public bool Bindable
{
[Token(Token = "0x600059F")]
[Address(RVA = "0x42D5E0", Offset = "0x42C3E0", VA = "0x18042D5E0")]
get
{
return default(bool);
}
}
/// <summary>Gets a value indicating the direction or directions of this property's data binding.</summary>
/// <returns>The direction of this property's data binding.</returns>
// Token: 0x170000E5 RID: 229
// (get) Token: 0x060005A0 RID: 1440 RVA: 0x000042D8 File Offset: 0x000024D8
[Token(Token = "0x170000E5")]
public BindingDirection Direction
{
[Token(Token = "0x60005A0")]
[Address(RVA = "0x495080", Offset = "0x493E80", VA = "0x180495080")]
get
{
return BindingDirection.OneWay;
}
}
/// <summary>Determines whether two <see cref="T:System.ComponentModel.BindableAttribute" /> objects are equal.</summary>
/// <param name="obj">The object to compare.</param>
/// <returns>
/// <see langword="true" /> if the specified <see cref="T:System.ComponentModel.BindableAttribute" /> is equal to the current <see cref="T:System.ComponentModel.BindableAttribute" />; <see langword="false" /> if it is not equal.</returns>
// Token: 0x060005A1 RID: 1441 RVA: 0x000042F0 File Offset: 0x000024F0
[Token(Token = "0x60005A1")]
[Address(RVA = "0x494DA0", Offset = "0x493BA0", VA = "0x180494DA0", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Serves as a hash function for the <see cref="T:System.ComponentModel.BindableAttribute" /> class.</summary>
/// <returns>A hash code for the current <see cref="T:System.ComponentModel.BindableAttribute" />.</returns>
// Token: 0x060005A2 RID: 1442 RVA: 0x00004308 File Offset: 0x00002508
[Token(Token = "0x60005A2")]
[Address(RVA = "0x494E40", Offset = "0x493C40", VA = "0x180494E40", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Determines if this attribute is the default.</summary>
/// <returns>
/// <see langword="true" /> if the attribute is the default value for this attribute class; otherwise, <see langword="false" />.</returns>
// Token: 0x060005A3 RID: 1443 RVA: 0x00004320 File Offset: 0x00002520
[Token(Token = "0x60005A3")]
[Address(RVA = "0x494E50", Offset = "0x493C50", VA = "0x180494E50", Slot = "6")]
public override bool IsDefaultAttribute()
{
return default(bool);
}
/// <summary>Specifies that a property is typically used for binding. This field is read-only.</summary>
// Token: 0x04000451 RID: 1105
[Token(Token = "0x4000451")]
public static readonly BindableAttribute Yes;
/// <summary>Specifies that a property is not typically used for binding. This field is read-only.</summary>
// Token: 0x04000452 RID: 1106
[Token(Token = "0x4000452")]
public static readonly BindableAttribute No;
/// <summary>Specifies the default value for the <see cref="T:System.ComponentModel.BindableAttribute" />, which is <see cref="F:System.ComponentModel.BindableAttribute.No" />. This field is read-only.</summary>
// Token: 0x04000453 RID: 1107
[Token(Token = "0x4000453")]
public static readonly BindableAttribute Default;
// Token: 0x04000454 RID: 1108
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000454")]
private bool bindable;
// Token: 0x04000455 RID: 1109
[FieldOffset(Offset = "0x11")]
[Token(Token = "0x4000455")]
private bool isDefault;
// Token: 0x04000456 RID: 1110
[FieldOffset(Offset = "0x14")]
[Token(Token = "0x4000456")]
private BindingDirection direction;
}
}
+24
View File
@@ -0,0 +1,24 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies values to indicate whether a property can be bound to a data element or another property.</summary>
// Token: 0x020000ED RID: 237
[Token(Token = "0x20000ED")]
public enum BindableSupport
{
/// <summary>The property is not bindable at design time.</summary>
// Token: 0x04000458 RID: 1112
[Token(Token = "0x4000458")]
No,
/// <summary>The property is bindable at design time.</summary>
// Token: 0x04000459 RID: 1113
[Token(Token = "0x4000459")]
Yes,
/// <summary>The property is set to the default.</summary>
// Token: 0x0400045A RID: 1114
[Token(Token = "0x400045A")]
Default
}
}
+20
View File
@@ -0,0 +1,20 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies whether the template can be bound one way or two ways.</summary>
// Token: 0x020000EE RID: 238
[Token(Token = "0x20000EE")]
public enum BindingDirection
{
/// <summary>The template can only accept property values. Used with a generic <see cref="T:System.Web.UI.ITemplate" />.</summary>
// Token: 0x0400045C RID: 1116
[Token(Token = "0x400045C")]
OneWay,
/// <summary>The template can accept and expose property values. Used with an <see cref="T:System.Web.UI.IBindableTemplate" />.</summary>
// Token: 0x0400045D RID: 1117
[Token(Token = "0x400045D")]
TwoWay
}
}
+757
View File
@@ -0,0 +1,757 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides a generic collection that supports data binding.</summary>
/// <typeparam name="T">The type of elements in the list.</typeparam>
// Token: 0x020000EF RID: 239
[Token(Token = "0x20000EF")]
[Serializable]
public class BindingList<T> : Collection<T>, IBindingList, IList, ICollection, IEnumerable, ICancelAddNew, IRaiseItemChangedEvents
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.BindingList`1" /> class using default values.</summary>
// Token: 0x060005A5 RID: 1445 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005A5")]
[Address(RVA = "0x311FFF0", Offset = "0x311EDF0", VA = "0x18311FFF0")]
public BindingList()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.BindingList`1" /> class with the specified list.</summary>
/// <param name="list">An <see cref="T:System.Collections.Generic.IList`1" /> of items to be contained in the <see cref="T:System.ComponentModel.BindingList`1" />.</param>
// Token: 0x060005A6 RID: 1446 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005A6")]
[Address(RVA = "0x311FF80", Offset = "0x311ED80", VA = "0x18311FF80")]
public BindingList(IList<T> 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);
}
}
/// <summary>Occurs before an item is added to the list.</summary>
// 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
{
}
}
/// <summary>Raises the <see cref="E:System.ComponentModel.BindingList`1.AddingNew" /> event.</summary>
/// <param name="e">An <see cref="T:System.ComponentModel.AddingNewEventArgs" /> that contains the event data.</param>
// 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;
}
/// <summary>Occurs when the list or an item in the list changes.</summary>
// 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
{
}
}
/// <summary>Raises the <see cref="E:System.ComponentModel.BindingList`1.ListChanged" /> event.</summary>
/// <param name="e">A <see cref="T:System.ComponentModel.ListChangedEventArgs" /> that contains the event data.</param>
// 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)
{
}
/// <summary>Gets or sets a value indicating whether adding or removing items within the list raises <see cref="E:System.ComponentModel.BindingList`1.ListChanged" /> events.</summary>
/// <returns>
/// <see langword="true" /> if adding or removing items raises <see cref="E:System.ComponentModel.BindingList`1.ListChanged" /> events; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
// 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
{
}
}
/// <summary>Raises a <see cref="E:System.ComponentModel.BindingList`1.ListChanged" /> event of type <see cref="F:System.ComponentModel.ListChangedType.Reset" />.</summary>
// Token: 0x060005B2 RID: 1458 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005B2")]
[Address(RVA = "0x311FB10", Offset = "0x311E910", VA = "0x18311FB10")]
public void ResetBindings()
{
}
/// <summary>Raises a <see cref="E:System.ComponentModel.BindingList`1.ListChanged" /> event of type <see cref="F:System.ComponentModel.ListChangedType.ItemChanged" /> for the item at the specified position.</summary>
/// <param name="position">A zero-based index of the item to be reset.</param>
// 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)
{
}
/// <summary>Removes all elements from the collection.</summary>
// 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()
{
}
/// <summary>Inserts the specified item in the list at the specified index.</summary>
/// <param name="index">The zero-based index where the item is to be inserted.</param>
/// <param name="item">The item to insert in the list.</param>
// 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)
{
}
/// <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">You are removing a newly added item and <see cref="P:System.ComponentModel.IBindingList.AllowRemove" /> is set to <see langword="false" />.</exception>
// 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)
{
}
/// <summary>Replaces the item at the specified index with the specified item.</summary>
/// <param name="index">The zero-based index of the item to replace.</param>
/// <param name="item">The new value for the item at the specified index. The value can be <see langword="null" /> for reference types.</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.
/// -or-
/// <paramref name="index" /> is greater than <see cref="P:System.Collections.ObjectModel.Collection`1.Count" />.</exception>
// 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)
{
}
/// <summary>Discards a pending new item.</summary>
/// <param name="itemIndex">The index of the of the new item to be added</param>
// 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)
{
}
/// <summary>Commits a pending new item to the collection.</summary>
/// <param name="itemIndex">The index of the new item to be added.</param>
// 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)
{
}
/// <summary>Adds a new item to the collection.</summary>
/// <returns>The item added to the list.</returns>
/// <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.BindingSource.AllowNew" /> property is set to <see langword="false" />.
/// -or-
/// A public default constructor could not be found for the current item type.</exception>
// Token: 0x060005BB RID: 1467 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60005BB")]
[Address(RVA = "0x311ED80", Offset = "0x311DB80", VA = "0x18311ED80")]
public T AddNew()
{
return null;
}
/// <summary>Adds a new item to the list. For more information, see <see cref="M:System.ComponentModel.IBindingList.AddNew" />.</summary>
/// <returns>The item added to the list.</returns>
/// <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
// 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);
}
}
/// <summary>Adds a new item to the end of the collection.</summary>
/// <returns>The item that was added to the collection.</returns>
/// <exception cref="T:System.InvalidCastException">The new item is not the same type as the objects contained in the <see cref="T:System.ComponentModel.BindingList`1" />.</exception>
// 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;
}
/// <summary>Gets or sets a value indicating whether you can add items to the list using the <see cref="M:System.ComponentModel.BindingList`1.AddNew" /> method.</summary>
/// <returns>
/// <see langword="true" /> if you can add items to the list with the <see cref="M:System.ComponentModel.BindingList`1.AddNew" /> method; otherwise, <see langword="false" />. The default depends on the underlying type contained in the list.</returns>
// 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
{
}
}
/// <summary>Gets a value indicating whether new items can be added to the list using the <see cref="M:System.ComponentModel.BindingList`1.AddNew" /> method.</summary>
/// <returns>
/// <see langword="true" /> if you can add items to the list with the <see cref="M:System.ComponentModel.BindingList`1.AddNew" /> method; otherwise, <see langword="false" />. The default depends on the underlying type contained in the list.</returns>
// 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);
}
}
/// <summary>Gets or sets a value indicating whether items in the list can be edited.</summary>
/// <returns>
/// <see langword="true" /> if list items can be edited; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
// 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
{
}
}
/// <summary>Gets a value indicating whether items in the list can be edited.</summary>
/// <returns>
/// <see langword="true" /> if list items can be edited; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
// 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);
}
}
/// <summary>Gets or sets a value indicating whether you can remove items from the collection.</summary>
/// <returns>
/// <see langword="true" /> if you can remove items from the list with the <see cref="M:System.ComponentModel.BindingList`1.RemoveItem(System.Int32)" /> method otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
// 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
{
}
}
/// <summary>Gets a value indicating whether items can be removed from the list.</summary>
/// <returns>
/// <see langword="true" /> if you can remove items from the list with the <see cref="M:System.ComponentModel.BindingList`1.RemoveItem(System.Int32)" /> method; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
// 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);
}
}
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification" />.</summary>
/// <returns>
/// <see langword="true" /> if a <see cref="E:System.ComponentModel.IBindingList.ListChanged" /> event is raised when the list changes or when an item changes; otherwise, <see langword="false" />.</returns>
// 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);
}
}
/// <summary>Gets a value indicating whether <see cref="E:System.ComponentModel.BindingList`1.ListChanged" /> events are enabled.</summary>
/// <returns>
/// <see langword="true" /> if <see cref="E:System.ComponentModel.BindingList`1.ListChanged" /> events are supported; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
// 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);
}
}
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSearching" />.</summary>
/// <returns>
/// <see langword="true" /> if the list supports searching using the <see cref="M:System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor,System.Object)" /> method; otherwise, <see langword="false" />.</returns>
// 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);
}
}
/// <summary>Gets a value indicating whether the list supports searching.</summary>
/// <returns>
/// <see langword="true" /> if the list supports searching; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
// 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);
}
}
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSorting" />.</summary>
/// <returns>
/// <see langword="true" /> if the list supports sorting; otherwise, <see langword="false" />.</returns>
// 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);
}
}
/// <summary>Gets a value indicating whether the list supports sorting.</summary>
/// <returns>
/// <see langword="true" /> if the list supports sorting; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
// 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);
}
}
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.IsSorted" />.</summary>
/// <returns>
/// <see langword="true" /> if <see cref="M:System.ComponentModel.IBindingListView.ApplySort(System.ComponentModel.ListSortDescriptionCollection)" /> has been called and <see cref="M:System.ComponentModel.IBindingList.RemoveSort" /> has not been called; otherwise, <see langword="false" />.</returns>
// 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);
}
}
/// <summary>Gets a value indicating whether the list is sorted.</summary>
/// <returns>
/// <see langword="true" /> if the list is sorted; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
// 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);
}
}
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortProperty" />.</summary>
/// <returns>The <see cref="T:System.ComponentModel.PropertyDescriptor" /> that is being used for sorting.</returns>
// 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;
}
}
/// <summary>Gets the property descriptor that is used for sorting the list if sorting is implemented in a derived class; otherwise, returns <see langword="null" />.</summary>
/// <returns>The <see cref="T:System.ComponentModel.PropertyDescriptor" /> used for sorting the list.</returns>
// 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;
}
}
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortDirection" />.</summary>
/// <returns>One of the <see cref="T:System.ComponentModel.ListSortDirection" /> values.</returns>
// 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;
}
}
/// <summary>Gets the direction the list is sorted.</summary>
/// <returns>One of the <see cref="T:System.ComponentModel.ListSortDirection" /> values. The default is <see cref="F:System.ComponentModel.ListSortDirection.Ascending" />.</returns>
// 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;
}
}
/// <summary>Sorts the list based on a <see cref="T:System.ComponentModel.PropertyDescriptor" /> and a <see cref="T:System.ComponentModel.ListSortDirection" />. For a complete description of this member, see <see cref="M:System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)" />.</summary>
/// <param name="prop">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to sort by.</param>
/// <param name="direction">One of the <see cref="T:System.ComponentModel.ListSortDirection" /> values.</param>
// 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)
{
}
/// <summary>Sorts the items if overridden in a derived class; otherwise, throws a <see cref="T:System.NotSupportedException" />.</summary>
/// <param name="prop">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that specifies the property to sort on.</param>
/// <param name="direction">One of the <see cref="T:System.ComponentModel.ListSortDirection" /> values.</param>
/// <exception cref="T:System.NotSupportedException">Method is not overridden in a derived class.</exception>
// 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)
{
}
/// <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.RemoveSort" /></summary>
// Token: 0x060005D6 RID: 1494 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005D6")]
[Address(RVA = "0x311FD60", Offset = "0x311EB60", VA = "0x18311FD60", Slot = "55")]
void IBindingList.RemoveSort()
{
}
/// <summary>Removes any sort applied with <see cref="M:System.ComponentModel.BindingList`1.ApplySortCore(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)" /> if sorting is implemented in a derived class; otherwise, raises <see cref="T:System.NotSupportedException" />.</summary>
/// <exception cref="T:System.NotSupportedException">Method is not overridden in a derived class.</exception>
// 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()
{
}
/// <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor,System.Object)" />.</summary>
/// <param name="prop">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to search on.</param>
/// <param name="key">The value of the <paramref name="prop" /> parameter to search for.</param>
/// <returns>The index of the row that has the given <see cref="T:System.ComponentModel.PropertyDescriptor" />.</returns>
// 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;
}
/// <summary>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 <see cref="T:System.NotSupportedException" />.</summary>
/// <param name="prop">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to search for.</param>
/// <param name="key">The value of <paramref name="prop" /> to match.</param>
/// <returns>The zero-based index of the item that matches the property descriptor and contains the specified value.</returns>
/// <exception cref="T:System.NotSupportedException">
/// <see cref="M:System.ComponentModel.BindingList`1.FindCore(System.ComponentModel.PropertyDescriptor,System.Object)" /> is not overridden in a derived class.</exception>
// 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;
}
/// <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor)" />.</summary>
/// <param name="prop">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to add as a search criteria.</param>
// 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)
{
}
/// <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor)" />.</summary>
/// <param name="prop">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> to remove from the indexes used for searching.</param>
// 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)
{
}
/// <summary>Gets a value indicating whether item property value changes raise <see cref="E:System.ComponentModel.BindingList`1.ListChanged" /> events of type <see cref="F:System.ComponentModel.ListChangedType.ItemChanged" />. This member cannot be overridden in a derived class.</summary>
/// <returns>
/// <see langword="true" /> if the list type implements <see cref="T:System.ComponentModel.INotifyPropertyChanged" />, otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
// 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;
}
}
+88
View File
@@ -0,0 +1,88 @@
using System;
using System.Globalization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides a type converter to convert <see cref="T:System.Boolean" /> objects to and from various other representations.</summary>
// Token: 0x020000F0 RID: 240
[Token(Token = "0x20000F0")]
public class BooleanConverter : TypeConverter
{
/// <summary>Gets a value indicating whether this converter can convert an object in the given source type to a Boolean object using the specified context.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="sourceType">A <see cref="T:System.Type" /> that represents the type you wish to convert from.</param>
/// <returns>
/// <see langword="true" /> if this object can perform the conversion; otherwise, <see langword="false" />.</returns>
// Token: 0x060005E0 RID: 1504 RVA: 0x00004548 File Offset: 0x00002748
[Token(Token = "0x60005E0")]
[Address(RVA = "0x495410", Offset = "0x494210", VA = "0x180495410", Slot = "4")]
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
{
return default(bool);
}
/// <summary>Converts the given value object to a Boolean object.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> that specifies the culture to which to convert.</param>
/// <param name="value">The <see cref="T:System.Object" /> to convert.</param>
/// <returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not a valid value for the target type.</exception>
/// <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
// Token: 0x060005E1 RID: 1505 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60005E1")]
[Address(RVA = "0x4954C0", Offset = "0x4942C0", VA = "0x1804954C0", Slot = "6")]
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
return null;
}
/// <summary>Gets a collection of standard values for the Boolean data type.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <returns>A <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection" /> that holds a standard set of valid values.</returns>
// Token: 0x060005E2 RID: 1506 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60005E2")]
[Address(RVA = "0x495690", Offset = "0x494490", VA = "0x180495690", Slot = "12")]
public override TypeConverter.StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
{
return null;
}
/// <summary>Gets a value indicating whether the list of standard values returned from the <see cref="M:System.ComponentModel.BooleanConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)" /> method is an exclusive list.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <returns>
/// <see langword="true" /> because the <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection" /> returned from <see cref="M:System.ComponentModel.BooleanConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)" /> is an exhaustive list of possible values. This method never returns <see langword="false" />.</returns>
// Token: 0x060005E3 RID: 1507 RVA: 0x00004560 File Offset: 0x00002760
[Token(Token = "0x60005E3")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "13")]
public override bool GetStandardValuesExclusive(ITypeDescriptorContext context)
{
return default(bool);
}
/// <summary>Gets a value indicating whether this object supports a standard set of values that can be picked from a list.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <returns>
/// <see langword="true" /> because <see cref="M:System.ComponentModel.BooleanConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)" /> can be called to find a common set of values the object supports. This method never returns <see langword="false" />.</returns>
// Token: 0x060005E4 RID: 1508 RVA: 0x00004578 File Offset: 0x00002778
[Token(Token = "0x60005E4")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "14")]
public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
{
return default(bool);
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.BooleanConverter" /> class.</summary>
// Token: 0x060005E5 RID: 1509 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005E5")]
[Address(RVA = "0x495820", Offset = "0x494620", VA = "0x180495820")]
public BooleanConverter()
{
}
// Token: 0x0400046A RID: 1130
[Token(Token = "0x400046A")]
private static TypeConverter.StandardValuesCollection values;
}
}
@@ -0,0 +1,91 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies whether a property or event should be displayed in a Properties window.</summary>
// Token: 0x020000F1 RID: 241
[Token(Token = "0x20000F1")]
[AttributeUsage(AttributeTargets.All)]
public sealed class BrowsableAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.BrowsableAttribute" /> class.</summary>
/// <param name="browsable">
/// <see langword="true" /> if a property or event can be modified at design time; otherwise, <see langword="false" />. The default is <see langword="true" />.</param>
// Token: 0x060005E6 RID: 1510 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005E6")]
[Address(RVA = "0x495A20", Offset = "0x494820", VA = "0x180495A20")]
public BrowsableAttribute(bool browsable)
{
}
/// <summary>Gets a value indicating whether an object is browsable.</summary>
/// <returns>
/// <see langword="true" /> if the object is browsable; otherwise, <see langword="false" />.</returns>
// Token: 0x170000FC RID: 252
// (get) Token: 0x060005E7 RID: 1511 RVA: 0x00004590 File Offset: 0x00002790
[Token(Token = "0x170000FC")]
public bool Browsable
{
[Token(Token = "0x60005E7")]
[Address(RVA = "0x42D5E0", Offset = "0x42C3E0", VA = "0x18042D5E0")]
get
{
return default(bool);
}
}
/// <summary>Indicates whether this instance and a specified object are equal.</summary>
/// <param name="obj">Another object to compare to.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="obj" /> is equal to this instance; otherwise, <see langword="false" />.</returns>
// Token: 0x060005E8 RID: 1512 RVA: 0x000045A8 File Offset: 0x000027A8
[Token(Token = "0x60005E8")]
[Address(RVA = "0x495880", Offset = "0x494680", VA = "0x180495880", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// Token: 0x060005E9 RID: 1513 RVA: 0x000045C0 File Offset: 0x000027C0
[Token(Token = "0x60005E9")]
[Address(RVA = "0x494E40", Offset = "0x493C40", VA = "0x180494E40", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Determines if this attribute is the default.</summary>
/// <returns>
/// <see langword="true" /> if the attribute is the default value for this attribute class; otherwise, <see langword="false" />.</returns>
// Token: 0x060005EA RID: 1514 RVA: 0x000045D8 File Offset: 0x000027D8
[Token(Token = "0x60005EA")]
[Address(RVA = "0x495900", Offset = "0x494700", VA = "0x180495900", Slot = "6")]
public override bool IsDefaultAttribute()
{
return default(bool);
}
/// <summary>Specifies that a property or event can be modified at design time. This <see langword="static" /> field is read-only.</summary>
// Token: 0x0400046B RID: 1131
[Token(Token = "0x400046B")]
public static readonly BrowsableAttribute Yes;
/// <summary>Specifies that a property or event cannot be modified at design time. This <see langword="static" /> field is read-only.</summary>
// Token: 0x0400046C RID: 1132
[Token(Token = "0x400046C")]
public static readonly BrowsableAttribute No;
/// <summary>Specifies the default value for the <see cref="T:System.ComponentModel.BrowsableAttribute" />, which is <see cref="F:System.ComponentModel.BrowsableAttribute.Yes" />. This <see langword="static" /> field is read-only.</summary>
// Token: 0x0400046D RID: 1133
[Token(Token = "0x400046D")]
public static readonly BrowsableAttribute Default;
// Token: 0x0400046E RID: 1134
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400046E")]
private bool browsable;
}
}
+65
View File
@@ -0,0 +1,65 @@
using System;
using System.Globalization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides a type converter to convert 8-bit unsigned integer objects to and from various other representations.</summary>
// Token: 0x020000F2 RID: 242
[Token(Token = "0x20000F2")]
public class ByteConverter : BaseNumberConverter
{
// Token: 0x170000FD RID: 253
// (get) Token: 0x060005EC RID: 1516 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000FD")]
internal override Type TargetType
{
[Token(Token = "0x60005EC")]
[Address(RVA = "0x495C20", Offset = "0x494A20", VA = "0x180495C20", Slot = "17")]
get
{
return null;
}
}
// Token: 0x060005ED RID: 1517 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60005ED")]
[Address(RVA = "0x495A50", Offset = "0x494850", VA = "0x180495A50", Slot = "18")]
internal override object FromString(string value, int radix)
{
return null;
}
// Token: 0x060005EE RID: 1518 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60005EE")]
[Address(RVA = "0x495AD0", Offset = "0x4948D0", VA = "0x180495AD0", Slot = "19")]
internal override object FromString(string value, NumberFormatInfo formatInfo)
{
return null;
}
// Token: 0x060005EF RID: 1519 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60005EF")]
[Address(RVA = "0x495B30", Offset = "0x494930", VA = "0x180495B30", Slot = "20")]
internal override object FromString(string value, CultureInfo culture)
{
return null;
}
// Token: 0x060005F0 RID: 1520 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60005F0")]
[Address(RVA = "0x495B90", Offset = "0x494990", VA = "0x180495B90", Slot = "22")]
internal override string ToString(object value, NumberFormatInfo formatInfo)
{
return null;
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ByteConverter" /> class.</summary>
// Token: 0x060005F1 RID: 1521 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005F1")]
[Address(RVA = "0x494D40", Offset = "0x493B40", VA = "0x180494D40")]
public ByteConverter()
{
}
}
}
+56
View File
@@ -0,0 +1,56 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides data for a cancelable event.</summary>
// Token: 0x020000F3 RID: 243
[Token(Token = "0x20000F3")]
public class CancelEventArgs : EventArgs
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.CancelEventArgs" /> class with the <see cref="P:System.ComponentModel.CancelEventArgs.Cancel" /> property set to <see langword="false" />.</summary>
// Token: 0x060005F2 RID: 1522 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005F2")]
[Address(RVA = "0x495C80", Offset = "0x494A80", VA = "0x180495C80")]
public CancelEventArgs()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.CancelEventArgs" /> class with the <see cref="P:System.ComponentModel.CancelEventArgs.Cancel" /> property set to the given value.</summary>
/// <param name="cancel">
/// <see langword="true" /> to cancel the event; otherwise, <see langword="false" />.</param>
// Token: 0x060005F3 RID: 1523 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005F3")]
[Address(RVA = "0x495CE0", Offset = "0x494AE0", VA = "0x180495CE0")]
public CancelEventArgs(bool cancel)
{
}
/// <summary>Gets or sets a value indicating whether the event should be canceled.</summary>
/// <returns>
/// <see langword="true" /> if the event should be canceled; otherwise, <see langword="false" />.</returns>
// Token: 0x170000FE RID: 254
// (get) Token: 0x060005F4 RID: 1524 RVA: 0x000045F0 File Offset: 0x000027F0
// (set) Token: 0x060005F5 RID: 1525 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170000FE")]
public bool Cancel
{
[Token(Token = "0x60005F4")]
[Address(RVA = "0x42D5E0", Offset = "0x42C3E0", VA = "0x18042D5E0")]
get
{
return default(bool);
}
[Token(Token = "0x60005F5")]
[Address(RVA = "0x495D50", Offset = "0x494B50", VA = "0x180495D50")]
set
{
}
}
// Token: 0x0400046F RID: 1135
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400046F")]
private bool cancel;
}
}
@@ -0,0 +1,13 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Represents the method that handles a cancelable event.</summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data.</param>
// Token: 0x020000F4 RID: 244
// (Invoke) Token: 0x060005F7 RID: 1527
[Token(Token = "0x20000F4")]
public delegate void CancelEventHandler(object sender, CancelEventArgs e);
}
+364
View File
@@ -0,0 +1,364 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies the name of the category in which to group the property or event when displayed in a <see cref="T:System.Windows.Forms.PropertyGrid" /> control set to Categorized mode.</summary>
// Token: 0x020000F5 RID: 245
[Token(Token = "0x20000F5")]
[AttributeUsage(AttributeTargets.All)]
public class CategoryAttribute : Attribute
{
/// <summary>Gets a <see cref="T:System.ComponentModel.CategoryAttribute" /> representing the Action category.</summary>
/// <returns>A <see cref="T:System.ComponentModel.CategoryAttribute" /> for the action category.</returns>
// Token: 0x170000FF RID: 255
// (get) Token: 0x060005FA RID: 1530 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000FF")]
public static CategoryAttribute Action
{
[Token(Token = "0x60005FA")]
[Address(RVA = "0x496780", Offset = "0x495580", VA = "0x180496780")]
get
{
return null;
}
}
/// <summary>Gets a <see cref="T:System.ComponentModel.CategoryAttribute" /> representing the Appearance category.</summary>
/// <returns>A <see cref="T:System.ComponentModel.CategoryAttribute" /> for the appearance category.</returns>
// Token: 0x17000100 RID: 256
// (get) Token: 0x060005FB RID: 1531 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000100")]
public static CategoryAttribute Appearance
{
[Token(Token = "0x60005FB")]
[Address(RVA = "0x496830", Offset = "0x495630", VA = "0x180496830")]
get
{
return null;
}
}
/// <summary>Gets a <see cref="T:System.ComponentModel.CategoryAttribute" /> representing the Asynchronous category.</summary>
/// <returns>A <see cref="T:System.ComponentModel.CategoryAttribute" /> for the asynchronous category.</returns>
// Token: 0x17000101 RID: 257
// (get) Token: 0x060005FC RID: 1532 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000101")]
public static CategoryAttribute Asynchronous
{
[Token(Token = "0x60005FC")]
[Address(RVA = "0x4968E0", Offset = "0x4956E0", VA = "0x1804968E0")]
get
{
return null;
}
}
/// <summary>Gets a <see cref="T:System.ComponentModel.CategoryAttribute" /> representing the Behavior category.</summary>
/// <returns>A <see cref="T:System.ComponentModel.CategoryAttribute" /> for the behavior category.</returns>
// Token: 0x17000102 RID: 258
// (get) Token: 0x060005FD RID: 1533 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000102")]
public static CategoryAttribute Behavior
{
[Token(Token = "0x60005FD")]
[Address(RVA = "0x496990", Offset = "0x495790", VA = "0x180496990")]
get
{
return null;
}
}
/// <summary>Gets a <see cref="T:System.ComponentModel.CategoryAttribute" /> representing the Data category.</summary>
/// <returns>A <see cref="T:System.ComponentModel.CategoryAttribute" /> for the data category.</returns>
// Token: 0x17000103 RID: 259
// (get) Token: 0x060005FE RID: 1534 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000103")]
public static CategoryAttribute Data
{
[Token(Token = "0x60005FE")]
[Address(RVA = "0x496A90", Offset = "0x495890", VA = "0x180496A90")]
get
{
return null;
}
}
/// <summary>Gets a <see cref="T:System.ComponentModel.CategoryAttribute" /> representing the Default category.</summary>
/// <returns>A <see cref="T:System.ComponentModel.CategoryAttribute" /> for the default category.</returns>
// Token: 0x17000104 RID: 260
// (get) Token: 0x060005FF RID: 1535 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000104")]
public static CategoryAttribute Default
{
[Token(Token = "0x60005FF")]
[Address(RVA = "0x496B40", Offset = "0x495940", VA = "0x180496B40")]
get
{
return null;
}
}
/// <summary>Gets a <see cref="T:System.ComponentModel.CategoryAttribute" /> representing the Design category.</summary>
/// <returns>A <see cref="T:System.ComponentModel.CategoryAttribute" /> for the design category.</returns>
// Token: 0x17000105 RID: 261
// (get) Token: 0x06000600 RID: 1536 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000105")]
public static CategoryAttribute Design
{
[Token(Token = "0x6000600")]
[Address(RVA = "0x496C00", Offset = "0x495A00", VA = "0x180496C00")]
get
{
return null;
}
}
/// <summary>Gets a <see cref="T:System.ComponentModel.CategoryAttribute" /> representing the DragDrop category.</summary>
/// <returns>A <see cref="T:System.ComponentModel.CategoryAttribute" /> for the drag-and-drop category.</returns>
// Token: 0x17000106 RID: 262
// (get) Token: 0x06000601 RID: 1537 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000106")]
public static CategoryAttribute DragDrop
{
[Token(Token = "0x6000601")]
[Address(RVA = "0x496CB0", Offset = "0x495AB0", VA = "0x180496CB0")]
get
{
return null;
}
}
/// <summary>Gets a <see cref="T:System.ComponentModel.CategoryAttribute" /> representing the Focus category.</summary>
/// <returns>A <see cref="T:System.ComponentModel.CategoryAttribute" /> for the focus category.</returns>
// Token: 0x17000107 RID: 263
// (get) Token: 0x06000602 RID: 1538 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000107")]
public static CategoryAttribute Focus
{
[Token(Token = "0x6000602")]
[Address(RVA = "0x496D60", Offset = "0x495B60", VA = "0x180496D60")]
get
{
return null;
}
}
/// <summary>Gets a <see cref="T:System.ComponentModel.CategoryAttribute" /> representing the Format category.</summary>
/// <returns>A <see cref="T:System.ComponentModel.CategoryAttribute" /> for the format category.</returns>
// Token: 0x17000108 RID: 264
// (get) Token: 0x06000603 RID: 1539 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000108")]
public static CategoryAttribute Format
{
[Token(Token = "0x6000603")]
[Address(RVA = "0x496E10", Offset = "0x495C10", VA = "0x180496E10")]
get
{
return null;
}
}
/// <summary>Gets a <see cref="T:System.ComponentModel.CategoryAttribute" /> representing the Key category.</summary>
/// <returns>A <see cref="T:System.ComponentModel.CategoryAttribute" /> for the key category.</returns>
// Token: 0x17000109 RID: 265
// (get) Token: 0x06000604 RID: 1540 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000109")]
public static CategoryAttribute Key
{
[Token(Token = "0x6000604")]
[Address(RVA = "0x496EC0", Offset = "0x495CC0", VA = "0x180496EC0")]
get
{
return null;
}
}
/// <summary>Gets a <see cref="T:System.ComponentModel.CategoryAttribute" /> representing the Layout category.</summary>
/// <returns>A <see cref="T:System.ComponentModel.CategoryAttribute" /> for the layout category.</returns>
// Token: 0x1700010A RID: 266
// (get) Token: 0x06000605 RID: 1541 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700010A")]
public static CategoryAttribute Layout
{
[Token(Token = "0x6000605")]
[Address(RVA = "0x496F70", Offset = "0x495D70", VA = "0x180496F70")]
get
{
return null;
}
}
/// <summary>Gets a <see cref="T:System.ComponentModel.CategoryAttribute" /> representing the Mouse category.</summary>
/// <returns>A <see cref="T:System.ComponentModel.CategoryAttribute" /> for the mouse category.</returns>
// Token: 0x1700010B RID: 267
// (get) Token: 0x06000606 RID: 1542 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700010B")]
public static CategoryAttribute Mouse
{
[Token(Token = "0x6000606")]
[Address(RVA = "0x497020", Offset = "0x495E20", VA = "0x180497020")]
get
{
return null;
}
}
/// <summary>Gets a <see cref="T:System.ComponentModel.CategoryAttribute" /> representing the WindowStyle category.</summary>
/// <returns>A <see cref="T:System.ComponentModel.CategoryAttribute" /> for the window style category.</returns>
// Token: 0x1700010C RID: 268
// (get) Token: 0x06000607 RID: 1543 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700010C")]
public static CategoryAttribute WindowStyle
{
[Token(Token = "0x6000607")]
[Address(RVA = "0x4970D0", Offset = "0x495ED0", VA = "0x1804970D0")]
get
{
return null;
}
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.CategoryAttribute" /> class using the category name Default.</summary>
// Token: 0x06000608 RID: 1544 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000608")]
[Address(RVA = "0x496700", Offset = "0x495500", VA = "0x180496700")]
public CategoryAttribute()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.CategoryAttribute" /> class using the specified category name.</summary>
/// <param name="category">The name of the category.</param>
// Token: 0x06000609 RID: 1545 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000609")]
[Address(RVA = "0x496750", Offset = "0x495550", VA = "0x180496750")]
public CategoryAttribute(string category)
{
}
/// <summary>Gets the name of the category for the property or event that this attribute is applied to.</summary>
/// <returns>The name of the category for the property or event that this attribute is applied to.</returns>
// Token: 0x1700010D RID: 269
// (get) Token: 0x0600060A RID: 1546 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700010D")]
public string Category
{
[Token(Token = "0x600060A")]
[Address(RVA = "0x496A40", Offset = "0x495840", VA = "0x180496A40")]
get
{
return null;
}
}
/// <summary>Returns whether the value of the given object is equal to the current <see cref="T:System.ComponentModel.CategoryAttribute" />.</summary>
/// <param name="obj">The object to test the value equality of.</param>
/// <returns>
/// <see langword="true" /> if the value of the given object is equal to that of the current; otherwise, <see langword="false" />.</returns>
// Token: 0x0600060B RID: 1547 RVA: 0x00004608 File Offset: 0x00002808
[Token(Token = "0x600060B")]
[Address(RVA = "0x496050", Offset = "0x494E50", VA = "0x180496050", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns the hash code for this attribute.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// Token: 0x0600060C RID: 1548 RVA: 0x00004620 File Offset: 0x00002820
[Token(Token = "0x600060C")]
[Address(RVA = "0x496200", Offset = "0x495000", VA = "0x180496200", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Looks up the localized name of the specified category.</summary>
/// <param name="value">The identifer for the category to look up.</param>
/// <returns>The localized name of the category, or <see langword="null" /> if a localized name does not exist.</returns>
// Token: 0x0600060D RID: 1549 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600060D")]
[Address(RVA = "0x496260", Offset = "0x495060", VA = "0x180496260", Slot = "7")]
protected virtual string GetLocalizedString(string value)
{
return null;
}
/// <summary>Determines if this attribute is the default.</summary>
/// <returns>
/// <see langword="true" /> if the attribute is the default value for this attribute class; otherwise, <see langword="false" />.</returns>
// Token: 0x0600060E RID: 1550 RVA: 0x00004638 File Offset: 0x00002838
[Token(Token = "0x600060E")]
[Address(RVA = "0x4965C0", Offset = "0x4953C0", VA = "0x1804965C0", Slot = "6")]
public override bool IsDefaultAttribute()
{
return default(bool);
}
// Token: 0x04000470 RID: 1136
[Token(Token = "0x4000470")]
private static CategoryAttribute appearance;
// Token: 0x04000471 RID: 1137
[Token(Token = "0x4000471")]
private static CategoryAttribute asynchronous;
// Token: 0x04000472 RID: 1138
[Token(Token = "0x4000472")]
private static CategoryAttribute behavior;
// Token: 0x04000473 RID: 1139
[Token(Token = "0x4000473")]
private static CategoryAttribute data;
// Token: 0x04000474 RID: 1140
[Token(Token = "0x4000474")]
private static CategoryAttribute design;
// Token: 0x04000475 RID: 1141
[Token(Token = "0x4000475")]
private static CategoryAttribute action;
// Token: 0x04000476 RID: 1142
[Token(Token = "0x4000476")]
private static CategoryAttribute format;
// Token: 0x04000477 RID: 1143
[Token(Token = "0x4000477")]
private static CategoryAttribute layout;
// Token: 0x04000478 RID: 1144
[Token(Token = "0x4000478")]
private static CategoryAttribute mouse;
// Token: 0x04000479 RID: 1145
[Token(Token = "0x4000479")]
private static CategoryAttribute key;
// Token: 0x0400047A RID: 1146
[Token(Token = "0x400047A")]
private static CategoryAttribute focus;
// Token: 0x0400047B RID: 1147
[Token(Token = "0x400047B")]
private static CategoryAttribute windowStyle;
// Token: 0x0400047C RID: 1148
[Token(Token = "0x400047C")]
private static CategoryAttribute dragDrop;
// Token: 0x0400047D RID: 1149
[Token(Token = "0x400047D")]
private static CategoryAttribute defAttr;
// Token: 0x0400047E RID: 1150
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400047E")]
private bool localized;
// Token: 0x0400047F RID: 1151
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400047F")]
private string categoryValue;
}
}
+64
View File
@@ -0,0 +1,64 @@
using System;
using System.Globalization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides a type converter to convert Unicode character objects to and from various other representations.</summary>
// Token: 0x020000F6 RID: 246
[Token(Token = "0x20000F6")]
public class CharConverter : TypeConverter
{
/// <summary>Gets a value indicating whether this converter can convert an object in the given source type to a Unicode character object using the specified context.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="sourceType">A <see cref="T:System.Type" /> that represents the type you want to convert from.</param>
/// <returns>
/// <see langword="true" /> if this converter can perform the conversion; otherwise, <see langword="false" />.</returns>
// Token: 0x0600060F RID: 1551 RVA: 0x00004650 File Offset: 0x00002850
[Token(Token = "0x600060F")]
[Address(RVA = "0x497180", Offset = "0x495F80", VA = "0x180497180", Slot = "4")]
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
{
return default(bool);
}
/// <summary>Converts the given value object to a Unicode character object using the arguments.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="culture">The culture into which <paramref name="value" /> will be converted.</param>
/// <param name="value">The <see cref="T:System.Object" /> to convert.</param>
/// <param name="destinationType">The <see cref="T:System.Type" /> to convert the value to.</param>
/// <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
/// <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
// Token: 0x06000610 RID: 1552 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000610")]
[Address(RVA = "0x4973D0", Offset = "0x4961D0", VA = "0x1804973D0", Slot = "7")]
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
{
return null;
}
/// <summary>Converts the given object to a Unicode character object.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="culture">The culture into which <paramref name="value" /> will be converted.</param>
/// <param name="value">The <see cref="T:System.Object" /> to convert.</param>
/// <returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not a valid value for the target type.</exception>
/// <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
// Token: 0x06000611 RID: 1553 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000611")]
[Address(RVA = "0x497230", Offset = "0x496030", VA = "0x180497230", Slot = "6")]
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
return null;
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.CharConverter" /> class.</summary>
// Token: 0x06000612 RID: 1554 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000612")]
[Address(RVA = "0x4974E0", Offset = "0x4962E0", VA = "0x1804974E0")]
public CharConverter()
{
}
}
}
@@ -0,0 +1,24 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies how the collection is changed.</summary>
// Token: 0x020000F7 RID: 247
[Token(Token = "0x20000F7")]
public enum CollectionChangeAction
{
/// <summary>Specifies that an element was added to the collection.</summary>
// Token: 0x04000481 RID: 1153
[Token(Token = "0x4000481")]
Add = 1,
/// <summary>Specifies that an element was removed from the collection.</summary>
// Token: 0x04000482 RID: 1154
[Token(Token = "0x4000482")]
Remove,
/// <summary>Specifies that the entire collection has changed. This is caused by using methods that manipulate the entire collection, such as <see cref="M:System.Collections.CollectionBase.Clear" />.</summary>
// Token: 0x04000483 RID: 1155
[Token(Token = "0x4000483")]
Refresh
}
}
@@ -0,0 +1,61 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides data for the <see cref="E:System.Data.DataColumnCollection.CollectionChanged" /> event.</summary>
// Token: 0x020000F8 RID: 248
[Token(Token = "0x20000F8")]
public class CollectionChangeEventArgs : EventArgs
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> class.</summary>
/// <param name="action">One of the <see cref="T:System.ComponentModel.CollectionChangeAction" /> values that specifies how the collection changed.</param>
/// <param name="element">An <see cref="T:System.Object" /> that specifies the instance of the collection where the change occurred.</param>
// Token: 0x06000613 RID: 1555 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000613")]
[Address(RVA = "0x497540", Offset = "0x496340", VA = "0x180497540")]
public CollectionChangeEventArgs(CollectionChangeAction action, object element)
{
}
/// <summary>Gets an action that specifies how the collection changed.</summary>
/// <returns>One of the <see cref="T:System.ComponentModel.CollectionChangeAction" /> values.</returns>
// Token: 0x1700010E RID: 270
// (get) Token: 0x06000614 RID: 1556 RVA: 0x00004668 File Offset: 0x00002868
[Token(Token = "0x1700010E")]
public virtual CollectionChangeAction Action
{
[Token(Token = "0x6000614")]
[Address(RVA = "0x3FA560", Offset = "0x3F9360", VA = "0x1803FA560", Slot = "4")]
get
{
return (CollectionChangeAction)0;
}
}
/// <summary>Gets the instance of the collection with the change.</summary>
/// <returns>An <see cref="T:System.Object" /> that represents the instance of the collection with the change, or <see langword="null" /> if you refresh the collection.</returns>
// Token: 0x1700010F RID: 271
// (get) Token: 0x06000615 RID: 1557 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700010F")]
public virtual object Element
{
[Token(Token = "0x6000615")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40", Slot = "5")]
get
{
return null;
}
}
// Token: 0x04000484 RID: 1156
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000484")]
private CollectionChangeAction action;
// Token: 0x04000485 RID: 1157
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000485")]
private object element;
}
}
@@ -0,0 +1,13 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Represents the method that handles the <see cref="E:System.Data.DataColumnCollection.CollectionChanged" /> event raised when adding elements to or removing elements from a collection.</summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> that contains the event data.</param>
// Token: 0x020000F9 RID: 249
// (Invoke) Token: 0x06000617 RID: 1559
[Token(Token = "0x20000F9")]
public delegate void CollectionChangeEventHandler(object sender, CollectionChangeEventArgs e);
}
@@ -0,0 +1,62 @@
using System;
using System.Globalization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides a type converter to convert collection objects to and from various other representations.</summary>
// Token: 0x020000FA RID: 250
[Token(Token = "0x20000FA")]
public class CollectionConverter : TypeConverter
{
/// <summary>Converts the given value object to the specified destination type.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="culture">The culture to which <paramref name="value" /> will be converted.</param>
/// <param name="value">The <see cref="T:System.Object" /> to convert. This parameter must inherit from <see cref="T:System.Collections.ICollection" />.</param>
/// <param name="destinationType">The <see cref="T:System.Type" /> to convert the value to.</param>
/// <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="destinationType" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
// Token: 0x0600061A RID: 1562 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600061A")]
[Address(RVA = "0x4975C0", Offset = "0x4963C0", VA = "0x1804975C0", Slot = "7")]
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
{
return null;
}
/// <summary>Gets a collection of properties for the type of array specified by the value parameter using the specified context and attributes.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="value">An <see cref="T:System.Object" /> that specifies the type of array to get the properties for.</param>
/// <param name="attributes">An array of type <see cref="T:System.Attribute" /> that will be used as a filter.</param>
/// <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> with the properties that are exposed for this data type, or <see langword="null" /> if there are no properties. This method always returns <see langword="null" />.</returns>
// Token: 0x0600061B RID: 1563 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600061B")]
[Address(RVA = "0x43E630", Offset = "0x43D430", VA = "0x18043E630", Slot = "10")]
public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes)
{
return null;
}
/// <summary>Gets a value indicating whether this object supports properties.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <returns>
/// <see langword="false" /> because <see cref="M:System.ComponentModel.CollectionConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])" /> should not be called to find the properties of this object. This method never returns <see langword="true" />.</returns>
// Token: 0x0600061C RID: 1564 RVA: 0x00004680 File Offset: 0x00002880
[Token(Token = "0x600061C")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "11")]
public override bool GetPropertiesSupported(ITypeDescriptorContext context)
{
return default(bool);
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.CollectionConverter" /> class.</summary>
// Token: 0x0600061D RID: 1565 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600061D")]
[Address(RVA = "0x490E60", Offset = "0x48FC60", VA = "0x180490E60")]
public CollectionConverter()
{
}
}
}
+45
View File
@@ -0,0 +1,45 @@
using System;
using System.Diagnostics;
using Cpp2IlInjected;
namespace System.ComponentModel
{
// Token: 0x020000FB RID: 251
[Token(Token = "0x20000FB")]
internal static class CompModSwitches
{
// Token: 0x17000110 RID: 272
// (get) Token: 0x0600061E RID: 1566 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000110")]
public static BooleanSwitch CommonDesignerServices
{
[Token(Token = "0x600061E")]
[Address(RVA = "0x497700", Offset = "0x496500", VA = "0x180497700")]
get
{
return null;
}
}
// Token: 0x17000111 RID: 273
// (get) Token: 0x0600061F RID: 1567 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000111")]
public static TraceSwitch EventLog
{
[Token(Token = "0x600061F")]
[Address(RVA = "0x4977A0", Offset = "0x4965A0", VA = "0x1804977A0")]
get
{
return null;
}
}
// Token: 0x04000486 RID: 1158
[Token(Token = "0x4000486")]
private static BooleanSwitch commonDesignerServices;
// Token: 0x04000487 RID: 1159
[Token(Token = "0x4000487")]
private static TraceSwitch eventLog;
}
}
@@ -0,0 +1,106 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies the data source and data member properties for a component that supports complex data binding. This class cannot be inherited.</summary>
// Token: 0x020000FC RID: 252
[Token(Token = "0x20000FC")]
[AttributeUsage(AttributeTargets.Class)]
public sealed class ComplexBindingPropertiesAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> class using no parameters.</summary>
// Token: 0x06000620 RID: 1568 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000620")]
[Address(RVA = "0x497C80", Offset = "0x496A80", VA = "0x180497C80")]
public ComplexBindingPropertiesAttribute()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> class using the specified data source.</summary>
/// <param name="dataSource">The name of the property to be used as the data source.</param>
// Token: 0x06000621 RID: 1569 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000621")]
[Address(RVA = "0x497CE0", Offset = "0x496AE0", VA = "0x180497CE0")]
public ComplexBindingPropertiesAttribute(string dataSource)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> class using the specified data source and data member.</summary>
/// <param name="dataSource">The name of the property to be used as the data source.</param>
/// <param name="dataMember">The name of the property to be used as the source for data.</param>
// Token: 0x06000622 RID: 1570 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000622")]
[Address(RVA = "0x497CA0", Offset = "0x496AA0", VA = "0x180497CA0")]
public ComplexBindingPropertiesAttribute(string dataSource, string dataMember)
{
}
/// <summary>Gets the name of the data source property for the component to which the <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> is bound.</summary>
/// <returns>The name of the data source property for the component to which <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> is bound.</returns>
// Token: 0x17000112 RID: 274
// (get) Token: 0x06000623 RID: 1571 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000112")]
public string DataSource
{
[Token(Token = "0x6000623")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
/// <summary>Gets the name of the data member property for the component to which the <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> is bound.</summary>
/// <returns>The name of the data member property for the component to which <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> is bound</returns>
// Token: 0x17000113 RID: 275
// (get) Token: 0x06000624 RID: 1572 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000113")]
public string DataMember
{
[Token(Token = "0x6000624")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
get
{
return null;
}
}
/// <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> instance.</summary>
/// <param name="obj">The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> instance</param>
/// <returns>
/// <see langword="true" /> if the object is equal to the current instance; otherwise, <see langword="false" />, indicating they are not equal.</returns>
// Token: 0x06000625 RID: 1573 RVA: 0x00004698 File Offset: 0x00002898
[Token(Token = "0x6000625")]
[Address(RVA = "0x497B90", Offset = "0x496990", VA = "0x180497B90", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// Token: 0x06000626 RID: 1574 RVA: 0x000046B0 File Offset: 0x000028B0
[Token(Token = "0x6000626")]
[Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x04000488 RID: 1160
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000488")]
private readonly string dataSource;
// Token: 0x04000489 RID: 1161
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000489")]
private readonly string dataMember;
/// <summary>Represents the default value for the <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> class.</summary>
// Token: 0x0400048A RID: 1162
[Token(Token = "0x400048A")]
public static readonly ComplexBindingPropertiesAttribute Default;
}
}
+206
View File
@@ -0,0 +1,206 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides the base implementation for the <see cref="T:System.ComponentModel.IComponent" /> interface and enables object sharing between applications.</summary>
// Token: 0x020000FD RID: 253
[Token(Token = "0x20000FD")]
[DesignerCategory]
[DesignerCategory("Component")]
[ComVisible(true)]
[ClassInterface(ClassInterfaceType.AutoDispatch)]
public class Component : MarshalByRefObject, IComponent, IDisposable
{
/// <summary>Releases unmanaged resources and performs other cleanup operations before the <see cref="T:System.ComponentModel.Component" /> is reclaimed by garbage collection.</summary>
// Token: 0x06000628 RID: 1576 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000628")]
[Address(RVA = "0x499200", Offset = "0x498000", VA = "0x180499200", Slot = "1")]
protected override void Finalize()
{
}
/// <summary>Gets a value indicating whether the component can raise an event.</summary>
/// <returns>
/// <see langword="true" /> if the component can raise events; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
// Token: 0x17000114 RID: 276
// (get) Token: 0x06000629 RID: 1577 RVA: 0x000046C8 File Offset: 0x000028C8
[Token(Token = "0x17000114")]
protected virtual bool CanRaiseEvents
{
[Token(Token = "0x6000629")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "11")]
get
{
return default(bool);
}
}
// Token: 0x17000115 RID: 277
// (get) Token: 0x0600062A RID: 1578 RVA: 0x000046E0 File Offset: 0x000028E0
[Token(Token = "0x17000115")]
internal bool CanRaiseEventsInternal
{
[Token(Token = "0x600062A")]
[Address(RVA = "0x4994E0", Offset = "0x4982E0", VA = "0x1804994E0")]
get
{
return default(bool);
}
}
/// <summary>Occurs when the component is disposed by a call to the <see cref="M:System.ComponentModel.Component.Dispose" /> method.</summary>
// Token: 0x14000007 RID: 7
// (add) Token: 0x0600062B RID: 1579 RVA: 0x00002053 File Offset: 0x00000253
// (remove) Token: 0x0600062C RID: 1580 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x14000007")]
public event EventHandler Disposed
{
[Token(Token = "0x600062B")]
[Address(RVA = "0x499410", Offset = "0x498210", VA = "0x180499410", Slot = "8")]
add
{
}
[Token(Token = "0x600062C")]
[Address(RVA = "0x499610", Offset = "0x498410", VA = "0x180499610", Slot = "9")]
remove
{
}
}
/// <summary>Gets the list of event handlers that are attached to this <see cref="T:System.ComponentModel.Component" />.</summary>
/// <returns>An <see cref="T:System.ComponentModel.EventHandlerList" /> that provides the delegates for this component.</returns>
// Token: 0x17000116 RID: 278
// (get) Token: 0x0600062D RID: 1581 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000116")]
protected EventHandlerList Events
{
[Token(Token = "0x600062D")]
[Address(RVA = "0x4995A0", Offset = "0x4983A0", VA = "0x1804995A0")]
get
{
return null;
}
}
/// <summary>Gets or sets the <see cref="T:System.ComponentModel.ISite" /> of the <see cref="T:System.ComponentModel.Component" />.</summary>
/// <returns>The <see cref="T:System.ComponentModel.ISite" /> associated with the <see cref="T:System.ComponentModel.Component" />, or <see langword="null" /> if the <see cref="T:System.ComponentModel.Component" /> is not encapsulated in an <see cref="T:System.ComponentModel.IContainer" />, the <see cref="T:System.ComponentModel.Component" /> does not have an <see cref="T:System.ComponentModel.ISite" /> associated with it, or the <see cref="T:System.ComponentModel.Component" /> is removed from its <see cref="T:System.ComponentModel.IContainer" />.</returns>
// Token: 0x17000117 RID: 279
// (get) Token: 0x0600062E RID: 1582 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x0600062F RID: 1583 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000117")]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
[Browsable(false)]
public virtual ISite Site
{
[Token(Token = "0x600062E")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40", Slot = "12")]
get
{
return null;
}
[Token(Token = "0x600062F")]
[Address(RVA = "0x3F7210", Offset = "0x3F6010", VA = "0x1803F7210", Slot = "13")]
set
{
}
}
/// <summary>Releases all resources used by the <see cref="T:System.ComponentModel.Component" />.</summary>
// Token: 0x06000630 RID: 1584 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000630")]
[Address(RVA = "0x499190", Offset = "0x497F90", VA = "0x180499190", Slot = "10")]
public void Dispose()
{
}
/// <summary>Releases the unmanaged resources used by the <see cref="T:System.ComponentModel.Component" /> and optionally releases the managed resources.</summary>
/// <param name="disposing">
/// <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
// Token: 0x06000631 RID: 1585 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000631")]
[Address(RVA = "0x498FC0", Offset = "0x497DC0", VA = "0x180498FC0", Slot = "14")]
protected virtual void Dispose(bool disposing)
{
}
/// <summary>Gets the <see cref="T:System.ComponentModel.IContainer" /> that contains the <see cref="T:System.ComponentModel.Component" />.</summary>
/// <returns>The <see cref="T:System.ComponentModel.IContainer" /> that contains the <see cref="T:System.ComponentModel.Component" />, if any, or <see langword="null" /> if the <see cref="T:System.ComponentModel.Component" /> is not encapsulated in an <see cref="T:System.ComponentModel.IContainer" />.</returns>
// Token: 0x17000118 RID: 280
// (get) Token: 0x06000632 RID: 1586 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000118")]
[Browsable(false)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public IContainer Container
{
[Token(Token = "0x6000632")]
[Address(RVA = "0x499500", Offset = "0x498300", VA = "0x180499500")]
get
{
return null;
}
}
/// <summary>Returns an object that represents a service provided by the <see cref="T:System.ComponentModel.Component" /> or by its <see cref="T:System.ComponentModel.Container" />.</summary>
/// <param name="service">A service provided by the <see cref="T:System.ComponentModel.Component" />.</param>
/// <returns>An <see cref="T:System.Object" /> that represents a service provided by the <see cref="T:System.ComponentModel.Component" />, or <see langword="null" /> if the <see cref="T:System.ComponentModel.Component" /> does not provide the specified service.</returns>
// Token: 0x06000633 RID: 1587 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000633")]
[Address(RVA = "0x499280", Offset = "0x498080", VA = "0x180499280", Slot = "15")]
protected virtual object GetService(Type service)
{
return null;
}
/// <summary>Gets a value that indicates whether the <see cref="T:System.ComponentModel.Component" /> is currently in design mode.</summary>
/// <returns>
/// <see langword="true" /> if the <see cref="T:System.ComponentModel.Component" /> is in design mode; otherwise, <see langword="false" />.</returns>
// Token: 0x17000119 RID: 281
// (get) Token: 0x06000634 RID: 1588 RVA: 0x000046F8 File Offset: 0x000028F8
[Token(Token = "0x17000119")]
[Browsable(false)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
protected bool DesignMode
{
[Token(Token = "0x6000634")]
[Address(RVA = "0x499550", Offset = "0x498350", VA = "0x180499550")]
get
{
return default(bool);
}
}
/// <summary>Returns a <see cref="T:System.String" /> containing the name of the <see cref="T:System.ComponentModel.Component" />, if any. This method should not be overridden.</summary>
/// <returns>A <see cref="T:System.String" /> containing the name of the <see cref="T:System.ComponentModel.Component" />, if any, or <see langword="null" /> if the <see cref="T:System.ComponentModel.Component" /> is unnamed.</returns>
// Token: 0x06000635 RID: 1589 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000635")]
[Address(RVA = "0x4992E0", Offset = "0x4980E0", VA = "0x1804992E0", Slot = "3")]
public override string ToString()
{
return null;
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Component" /> class.</summary>
// Token: 0x06000636 RID: 1590 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000636")]
[Address(RVA = "0x4093D0", Offset = "0x4081D0", VA = "0x1804093D0")]
public Component()
{
}
// Token: 0x0400048B RID: 1163
[Token(Token = "0x400048B")]
private static readonly object EventDisposed;
// Token: 0x0400048C RID: 1164
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x400048C")]
private ISite site;
// Token: 0x0400048D RID: 1165
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
[Token(Token = "0x400048D")]
private EventHandlerList events;
}
}
@@ -0,0 +1,64 @@
using System;
using System.Collections;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides a read-only container for a collection of <see cref="T:System.ComponentModel.IComponent" /> objects.</summary>
// Token: 0x020000FE RID: 254
[Token(Token = "0x20000FE")]
[ComVisible(true)]
public class ComponentCollection : ReadOnlyCollectionBase
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ComponentCollection" /> class using the specified array of components.</summary>
/// <param name="components">An array of <see cref="T:System.ComponentModel.IComponent" /> objects to initialize the collection with.</param>
// Token: 0x06000638 RID: 1592 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000638")]
[Address(RVA = "0x497D60", Offset = "0x496B60", VA = "0x180497D60")]
public ComponentCollection(IComponent[] components)
{
}
/// <summary>Gets any component in the collection matching the specified name.</summary>
/// <param name="name">The name of the <see cref="T:System.ComponentModel.IComponent" /> to get.</param>
/// <returns>A component with a name matching the name specified by the <paramref name="name" /> parameter, or <see langword="null" /> if the named component cannot be found in the collection.</returns>
// Token: 0x1700011A RID: 282
[Token(Token = "0x1700011A")]
public virtual IComponent this[string name]
{
[Token(Token = "0x6000639")]
[Address(RVA = "0x497E40", Offset = "0x496C40", VA = "0x180497E40", Slot = "11")]
get
{
return null;
}
}
/// <summary>Gets the <see cref="T:System.ComponentModel.Component" /> in the collection at the specified collection index.</summary>
/// <param name="index">The collection index of the <see cref="T:System.ComponentModel.Component" /> to get.</param>
/// <returns>The <see cref="T:System.ComponentModel.IComponent" /> at the specified index.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">If the specified index is not within the index range of the collection.</exception>
// Token: 0x1700011B RID: 283
[Token(Token = "0x1700011B")]
public virtual IComponent this[int index]
{
[Token(Token = "0x600063A")]
[Address(RVA = "0x497DB0", Offset = "0x496BB0", VA = "0x180497DB0", Slot = "12")]
get
{
return null;
}
}
/// <summary>Copies the entire collection to an array, starting writing at the specified array index.</summary>
/// <param name="array">An <see cref="T:System.ComponentModel.IComponent" /> array to copy the objects in the collection to.</param>
/// <param name="index">The index of the <paramref name="array" /> at which copying to should begin.</param>
// Token: 0x0600063B RID: 1595 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600063B")]
[Address(RVA = "0x497D10", Offset = "0x496B10", VA = "0x180497D10")]
public void CopyTo(IComponent[] array, int index)
{
}
}
}
@@ -0,0 +1,45 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides a type converter to convert components to and from various other representations.</summary>
// Token: 0x020000FF RID: 255
[Token(Token = "0x20000FF")]
public class ComponentConverter : ReferenceConverter
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ComponentConverter" /> class.</summary>
/// <param name="type">A <see cref="T:System.Type" /> that represents the type to associate with this component converter.</param>
// Token: 0x0600063C RID: 1596 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600063C")]
[Address(RVA = "0x498110", Offset = "0x496F10", VA = "0x180498110")]
public ComponentConverter(Type type)
{
}
/// <summary>Gets a collection of properties for the type of component specified by the value parameter.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="value">An <see cref="T:System.Object" /> that specifies the type of component to get the properties for.</param>
/// <param name="attributes">An array of type <see cref="T:System.Attribute" /> that will be used as a filter.</param>
/// <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> with the properties that are exposed for the component, or <see langword="null" /> if there are no properties.</returns>
// Token: 0x0600063D RID: 1597 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600063D")]
[Address(RVA = "0x4980A0", Offset = "0x496EA0", VA = "0x1804980A0", Slot = "10")]
public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes)
{
return null;
}
/// <summary>Gets a value indicating whether this object supports properties using the specified context.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <returns>
/// <see langword="true" /> because <see cref="M:System.ComponentModel.TypeConverter.GetProperties(System.Object)" /> should be called to find the properties of this object. This method never returns <see langword="false" />.</returns>
// Token: 0x0600063E RID: 1598 RVA: 0x00004710 File Offset: 0x00002910
[Token(Token = "0x600063E")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "11")]
public override bool GetPropertiesSupported(ITypeDescriptorContext context)
{
return default(bool);
}
}
}
+41
View File
@@ -0,0 +1,41 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides the base class for a custom component editor.</summary>
// Token: 0x020000EB RID: 235
[Token(Token = "0x20000EB")]
public abstract class ComponentEditor
{
/// <summary>Edits the component and returns a value indicating whether the component was modified.</summary>
/// <param name="component">The component to be edited.</param>
/// <returns>
/// <see langword="true" /> if the component was modified; otherwise, <see langword="false" />.</returns>
// Token: 0x06000598 RID: 1432 RVA: 0x000042A8 File Offset: 0x000024A8
[Token(Token = "0x6000598")]
[Address(RVA = "0x498180", Offset = "0x496F80", VA = "0x180498180")]
public bool EditComponent(object component)
{
return default(bool);
}
/// <summary>Edits the component and returns a value indicating whether the component was modified based upon a given context.</summary>
/// <param name="context">An optional context object that can be used to obtain further information about the edit.</param>
/// <param name="component">The component to be edited.</param>
/// <returns>
/// <see langword="true" /> if the component was modified; otherwise, <see langword="false" />.</returns>
// Token: 0x06000599 RID: 1433
[Token(Token = "0x6000599")]
[Address(Slot = "4")]
public abstract bool EditComponent(ITypeDescriptorContext context, object component);
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ComponentEditor" /> class.</summary>
// Token: 0x0600059A RID: 1434 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600059A")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
protected ComponentEditor()
{
}
}
}
@@ -0,0 +1,88 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Resources;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides simple functionality for enumerating resources for a component or object. The <see cref="T:System.ComponentModel.ComponentResourceManager" /> class is a <see cref="T:System.Resources.ResourceManager" />.</summary>
// Token: 0x02000100 RID: 256
[Token(Token = "0x2000100")]
public class ComponentResourceManager : ResourceManager
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ComponentResourceManager" /> class with default values.</summary>
// Token: 0x0600063F RID: 1599 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600063F")]
[Address(RVA = "0x498E60", Offset = "0x497C60", VA = "0x180498E60")]
public ComponentResourceManager()
{
}
/// <summary>Creates a <see cref="T:System.ComponentModel.ComponentResourceManager" /> that looks up resources in satellite assemblies based on information from the specified <see cref="T:System.Type" />.</summary>
/// <param name="t">A <see cref="T:System.Type" /> from which the <see cref="T:System.ComponentModel.ComponentResourceManager" /> derives all information for finding resource files.</param>
// Token: 0x06000640 RID: 1600 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000640")]
[Address(RVA = "0x498EC0", Offset = "0x497CC0", VA = "0x180498EC0")]
public ComponentResourceManager(Type t)
{
}
// Token: 0x1700011C RID: 284
// (get) Token: 0x06000641 RID: 1601 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700011C")]
private CultureInfo NeutralResourcesCulture
{
[Token(Token = "0x6000641")]
[Address(RVA = "0x498F30", Offset = "0x497D30", VA = "0x180498F30")]
get
{
return null;
}
}
/// <summary>Applies a resource's value to the corresponding property of the object.</summary>
/// <param name="value">An <see cref="T:System.Object" /> that contains the property value to be applied.</param>
/// <param name="objectName">A <see cref="T:System.String" /> that contains the name of the object to look up in the resources.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="value" /> or <paramref name="objectName" /> is <see langword="null" />.</exception>
// Token: 0x06000642 RID: 1602 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000642")]
[Address(RVA = "0x4989B0", Offset = "0x4977B0", VA = "0x1804989B0")]
public void ApplyResources(object value, string objectName)
{
}
/// <summary>Applies a resource's value to the corresponding property of the object.</summary>
/// <param name="value">An <see cref="T:System.Object" /> that contains the property value to be applied.</param>
/// <param name="objectName">A <see cref="T:System.String" /> that contains the name of the object to look up in the resources.</param>
/// <param name="culture">The culture for which to apply resources.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="value" /> or <paramref name="objectName" /> is <see langword="null" />.</exception>
// Token: 0x06000643 RID: 1603 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000643")]
[Address(RVA = "0x4981A0", Offset = "0x496FA0", VA = "0x1804981A0", Slot = "10")]
public virtual void ApplyResources(object value, string objectName, CultureInfo culture)
{
}
// Token: 0x06000644 RID: 1604 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000644")]
[Address(RVA = "0x4989E0", Offset = "0x4977E0", VA = "0x1804989E0")]
private SortedList<string, object> FillResources(CultureInfo culture, out ResourceSet resourceSet)
{
return null;
}
// Token: 0x0400048E RID: 1166
[FieldOffset(Offset = "0x88")]
[Token(Token = "0x400048E")]
private Hashtable _resourceSets;
// Token: 0x0400048F RID: 1167
[FieldOffset(Offset = "0x90")]
[Token(Token = "0x400048F")]
private CultureInfo _neutralResourcesCulture;
}
}
+272
View File
@@ -0,0 +1,272 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Encapsulates zero or more components.</summary>
// Token: 0x02000101 RID: 257
[Token(Token = "0x2000101")]
public class Container : IContainer, IDisposable
{
/// <summary>Releases unmanaged resources and performs other cleanup operations before the <see cref="T:System.ComponentModel.Container" /> is reclaimed by garbage collection.</summary>
// Token: 0x06000645 RID: 1605 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000645")]
[Address(RVA = "0x499D90", Offset = "0x498B90", VA = "0x180499D90", Slot = "1")]
protected override void Finalize()
{
}
/// <summary>Adds the specified <see cref="T:System.ComponentModel.Component" /> to the <see cref="T:System.ComponentModel.Container" />. The component is unnamed.</summary>
/// <param name="component">The component to add.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="component" /> is <see langword="null" />.</exception>
// Token: 0x06000646 RID: 1606 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000646")]
[Address(RVA = "0x499970", Offset = "0x498770", VA = "0x180499970", Slot = "9")]
public virtual void Add(IComponent component)
{
}
/// <summary>Adds the specified <see cref="T:System.ComponentModel.Component" /> to the <see cref="T:System.ComponentModel.Container" /> and assigns it a name.</summary>
/// <param name="component">The component to add.</param>
/// <param name="name">The unique, case-insensitive name to assign to the component.
/// -or-
/// <see langword="null" />, which leaves the component unnamed.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="component" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="name" /> is not unique.</exception>
// Token: 0x06000647 RID: 1607 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000647")]
[Address(RVA = "0x4996F0", Offset = "0x4984F0", VA = "0x1804996F0", Slot = "10")]
public virtual void Add(IComponent component, string name)
{
}
/// <summary>Creates a site <see cref="T:System.ComponentModel.ISite" /> for the given <see cref="T:System.ComponentModel.IComponent" /> and assigns the given name to the site.</summary>
/// <param name="component">The <see cref="T:System.ComponentModel.IComponent" /> to create a site for.</param>
/// <param name="name">The name to assign to <paramref name="component" />, or <see langword="null" /> to skip the name assignment.</param>
/// <returns>The newly created site.</returns>
// Token: 0x06000648 RID: 1608 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000648")]
[Address(RVA = "0x499990", Offset = "0x498790", VA = "0x180499990", Slot = "11")]
protected virtual ISite CreateSite(IComponent component, string name)
{
return null;
}
/// <summary>Releases all resources used by the <see cref="T:System.ComponentModel.Container" />.</summary>
// Token: 0x06000649 RID: 1609 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000649")]
[Address(RVA = "0x499A10", Offset = "0x498810", VA = "0x180499A10", Slot = "8")]
public void Dispose()
{
}
/// <summary>Releases the unmanaged resources used by the <see cref="T:System.ComponentModel.Container" />, and optionally releases the managed resources.</summary>
/// <param name="disposing">
/// <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
// Token: 0x0600064A RID: 1610 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600064A")]
[Address(RVA = "0x499A80", Offset = "0x498880", VA = "0x180499A80", Slot = "12")]
protected virtual void Dispose(bool disposing)
{
}
/// <summary>Gets the service object of the specified type, if it is available.</summary>
/// <param name="service">The <see cref="T:System.Type" /> of the service to retrieve.</param>
/// <returns>An <see cref="T:System.Object" /> implementing the requested service, or <see langword="null" /> if the service cannot be resolved.</returns>
// Token: 0x0600064B RID: 1611 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600064B")]
[Address(RVA = "0x499E10", Offset = "0x498C10", VA = "0x180499E10", Slot = "13")]
protected virtual object GetService(Type service)
{
return null;
}
/// <summary>Gets all the components in the <see cref="T:System.ComponentModel.Container" />.</summary>
/// <returns>A collection that contains the components in the <see cref="T:System.ComponentModel.Container" />.</returns>
// Token: 0x1700011D RID: 285
// (get) Token: 0x0600064C RID: 1612 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700011D")]
public virtual ComponentCollection Components
{
[Token(Token = "0x600064C")]
[Address(RVA = "0x49A3D0", Offset = "0x4991D0", VA = "0x18049A3D0", Slot = "14")]
get
{
return null;
}
}
/// <summary>Removes a component from the <see cref="T:System.ComponentModel.Container" />.</summary>
/// <param name="component">The component to remove.</param>
// Token: 0x0600064D RID: 1613 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600064D")]
[Address(RVA = "0x499EB0", Offset = "0x498CB0", VA = "0x180499EB0", Slot = "15")]
public virtual void Remove(IComponent component)
{
}
// Token: 0x0600064E RID: 1614 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600064E")]
[Address(RVA = "0x499EC0", Offset = "0x498CC0", VA = "0x180499EC0")]
private void Remove(IComponent component, bool preserveSite)
{
}
/// <summary>Removes a component from the <see cref="T:System.ComponentModel.Container" /> without setting <see cref="P:System.ComponentModel.IComponent.Site" /> to <see langword="null" />.</summary>
/// <param name="component">The component to remove.</param>
// Token: 0x0600064F RID: 1615 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600064F")]
[Address(RVA = "0x499EA0", Offset = "0x498CA0", VA = "0x180499EA0")]
protected void RemoveWithoutUnsiting(IComponent component)
{
}
/// <summary>Determines whether the component name is unique for this container.</summary>
/// <param name="component">The named component.</param>
/// <param name="name">The component name to validate.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="component" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="name" /> is not unique.</exception>
// Token: 0x06000650 RID: 1616 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000650")]
[Address(RVA = "0x49A090", Offset = "0x498E90", VA = "0x18049A090", Slot = "16")]
protected virtual void ValidateName(IComponent component, string name)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Container" /> class.</summary>
// Token: 0x06000651 RID: 1617 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000651")]
[Address(RVA = "0x49A370", Offset = "0x499170", VA = "0x18049A370")]
public Container()
{
}
// Token: 0x04000490 RID: 1168
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000490")]
private ISite[] sites;
// Token: 0x04000491 RID: 1169
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000491")]
private int siteCount;
// Token: 0x04000492 RID: 1170
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000492")]
private ComponentCollection components;
// Token: 0x04000493 RID: 1171
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x4000493")]
private ContainerFilterService filter;
// Token: 0x04000494 RID: 1172
[FieldOffset(Offset = "0x30")]
[Token(Token = "0x4000494")]
private bool checkedFilter;
// Token: 0x04000495 RID: 1173
[FieldOffset(Offset = "0x38")]
[Token(Token = "0x4000495")]
private object syncObj;
// Token: 0x02000102 RID: 258
[Token(Token = "0x2000102")]
private class Site : ISite, IServiceProvider
{
// Token: 0x06000652 RID: 1618 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000652")]
[Address(RVA = "0x4A7B10", Offset = "0x4A6910", VA = "0x1804A7B10")]
internal Site(IComponent component, Container container, string name)
{
}
// Token: 0x1700011E RID: 286
// (get) Token: 0x06000653 RID: 1619 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700011E")]
public IComponent Component
{
[Token(Token = "0x6000653")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20", Slot = "4")]
get
{
return null;
}
}
// Token: 0x1700011F RID: 287
// (get) Token: 0x06000654 RID: 1620 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700011F")]
public IContainer Container
{
[Token(Token = "0x6000654")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40", Slot = "5")]
get
{
return null;
}
}
// Token: 0x06000655 RID: 1621 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000655")]
[Address(RVA = "0x4A7A50", Offset = "0x4A6850", VA = "0x1804A7A50", Slot = "9")]
public object GetService(Type service)
{
return null;
}
// Token: 0x17000120 RID: 288
// (get) Token: 0x06000656 RID: 1622 RVA: 0x00004728 File Offset: 0x00002928
[Token(Token = "0x17000120")]
public bool DesignMode
{
[Token(Token = "0x6000656")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "6")]
get
{
return default(bool);
}
}
// Token: 0x17000121 RID: 289
// (get) Token: 0x06000657 RID: 1623 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06000658 RID: 1624 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000121")]
public string Name
{
[Token(Token = "0x6000657")]
[Address(RVA = "0x3F6400", Offset = "0x3F5200", VA = "0x1803F6400", Slot = "7")]
get
{
return null;
}
[Token(Token = "0x6000658")]
[Address(RVA = "0x4A7B60", Offset = "0x4A6960", VA = "0x1804A7B60", Slot = "8")]
set
{
}
}
// Token: 0x04000496 RID: 1174
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000496")]
private IComponent component;
// Token: 0x04000497 RID: 1175
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000497")]
private Container container;
// Token: 0x04000498 RID: 1176
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000498")]
private string name;
}
}
}
@@ -0,0 +1,30 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides a base class for the container filter service.</summary>
// Token: 0x02000103 RID: 259
[Token(Token = "0x2000103")]
public abstract class ContainerFilterService
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ContainerFilterService" /> class.</summary>
// Token: 0x06000659 RID: 1625 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000659")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
protected ContainerFilterService()
{
}
/// <summary>Filters the component collection.</summary>
/// <param name="components">The component collection to filter.</param>
/// <returns>A <see cref="T:System.ComponentModel.ComponentCollection" /> that represents a modified collection.</returns>
// Token: 0x0600065A RID: 1626 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600065A")]
[Address(RVA = "0x4996E0", Offset = "0x4984E0", VA = "0x1804996E0", Slot = "4")]
public virtual ComponentCollection FilterComponents(ComponentCollection components)
{
return null;
}
}
}
@@ -0,0 +1,194 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides a type converter to convert <see cref="T:System.Globalization.CultureInfo" /> objects to and from various other representations.</summary>
// Token: 0x02000104 RID: 260
[Token(Token = "0x2000104")]
public class CultureInfoConverter : TypeConverter
{
// Token: 0x17000122 RID: 290
// (get) Token: 0x0600065B RID: 1627 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000122")]
private string DefaultCultureString
{
[Token(Token = "0x600065B")]
[Address(RVA = "0x49B7E0", Offset = "0x49A5E0", VA = "0x18049B7E0")]
get
{
return null;
}
}
/// <summary>Retrieves the name of the specified culture.</summary>
/// <param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> that specifies the culture to get the name for.</param>
/// <returns>The name of the specified culture.</returns>
// Token: 0x0600065C RID: 1628 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600065C")]
[Address(RVA = "0x49B570", Offset = "0x49A370", VA = "0x18049B570", Slot = "16")]
protected virtual string GetCultureName(CultureInfo culture)
{
return null;
}
/// <summary>Gets a value indicating whether this converter can convert an object in the given source type to a <see cref="T:System.Globalization.CultureInfo" /> using the specified context.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="sourceType">A <see cref="T:System.Type" /> that represents the type you wish to convert from.</param>
/// <returns>
/// <see langword="true" /> if this converter can perform the conversion; otherwise, <see langword="false" />.</returns>
// Token: 0x0600065D RID: 1629 RVA: 0x00004740 File Offset: 0x00002940
[Token(Token = "0x600065D")]
[Address(RVA = "0x49A8E0", Offset = "0x4996E0", VA = "0x18049A8E0", Slot = "4")]
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
{
return default(bool);
}
/// <summary>Gets a value indicating whether this converter can convert an object to the given destination type using the context.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="destinationType">A <see cref="T:System.Type" /> that represents the type you wish to convert to.</param>
/// <returns>
/// <see langword="true" /> if this converter can perform the conversion; otherwise, <see langword="false" />.</returns>
// Token: 0x0600065E RID: 1630 RVA: 0x00004758 File Offset: 0x00002958
[Token(Token = "0x600065E")]
[Address(RVA = "0x49A990", Offset = "0x499790", VA = "0x18049A990", Slot = "5")]
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
{
return default(bool);
}
/// <summary>Converts the specified value object to a <see cref="T:System.Globalization.CultureInfo" />.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> that specifies the culture to which to convert.</param>
/// <param name="value">The <see cref="T:System.Object" /> to convert.</param>
/// <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="value" /> specifies a culture that is not valid.</exception>
/// <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
// Token: 0x0600065F RID: 1631 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600065F")]
[Address(RVA = "0x49AA40", Offset = "0x499840", VA = "0x18049AA40", Slot = "6")]
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
return null;
}
/// <summary>Converts the given value object to the specified destination type.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> that specifies the culture to which to convert.</param>
/// <param name="value">The <see cref="T:System.Object" /> to convert.</param>
/// <param name="destinationType">The <see cref="T:System.Type" /> to convert the value to.</param>
/// <returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="destinationType" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
// Token: 0x06000660 RID: 1632 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000660")]
[Address(RVA = "0x49B0C0", Offset = "0x499EC0", VA = "0x18049B0C0", Slot = "7")]
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
{
return null;
}
/// <summary>Gets a collection of standard values for a <see cref="T:System.Globalization.CultureInfo" /> object using the specified context.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <returns>A <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection" /> containing a standard set of valid values, or <see langword="null" /> if the data type does not support a standard set of values.</returns>
// Token: 0x06000661 RID: 1633 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000661")]
[Address(RVA = "0x49B5A0", Offset = "0x49A3A0", VA = "0x18049B5A0", Slot = "12")]
public override TypeConverter.StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
{
return null;
}
/// <summary>Gets a value indicating whether the list of standard values returned from <see cref="M:System.ComponentModel.CultureInfoConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)" /> is an exhaustive list.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <returns>
/// <see langword="false" /> because the <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection" /> returned from <see cref="M:System.ComponentModel.CultureInfoConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)" /> is not an exhaustive list of possible values (that is, other values are possible). This method never returns <see langword="true" />.</returns>
// Token: 0x06000662 RID: 1634 RVA: 0x00004770 File Offset: 0x00002970
[Token(Token = "0x6000662")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "13")]
public override bool GetStandardValuesExclusive(ITypeDescriptorContext context)
{
return default(bool);
}
/// <summary>Gets a value indicating whether this object supports a standard set of values that can be picked from a list using the specified context.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <returns>
/// <see langword="true" /> because <see cref="M:System.ComponentModel.CultureInfoConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)" /> should be called to find a common set of values the object supports. This method never returns <see langword="false" />.</returns>
// Token: 0x06000663 RID: 1635 RVA: 0x00004788 File Offset: 0x00002988
[Token(Token = "0x6000663")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "14")]
public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
{
return default(bool);
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.CultureInfoConverter" /> class.</summary>
// Token: 0x06000664 RID: 1636 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000664")]
[Address(RVA = "0x49B780", Offset = "0x49A580", VA = "0x18049B780")]
public CultureInfoConverter()
{
}
// Token: 0x04000499 RID: 1177
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000499")]
private TypeConverter.StandardValuesCollection values;
// Token: 0x02000105 RID: 261
[Token(Token = "0x2000105")]
private class CultureComparer : IComparer
{
// Token: 0x06000665 RID: 1637 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000665")]
[Address(RVA = "0x3FFB80", Offset = "0x3FE980", VA = "0x1803FFB80")]
public CultureComparer(CultureInfoConverter cultureConverter)
{
}
// Token: 0x06000666 RID: 1638 RVA: 0x000047A0 File Offset: 0x000029A0
[Token(Token = "0x6000666")]
[Address(RVA = "0x49A700", Offset = "0x499500", VA = "0x18049A700", Slot = "4")]
public int Compare(object item1, object item2)
{
return 0;
}
// Token: 0x0400049A RID: 1178
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400049A")]
private CultureInfoConverter converter;
}
// Token: 0x02000106 RID: 262
[Token(Token = "0x2000106")]
private static class CultureInfoMapper
{
// Token: 0x06000667 RID: 1639 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000667")]
[Address(RVA = "0x49B810", Offset = "0x49A610", VA = "0x18049B810")]
public static string GetCultureInfoName(string cultureInfoDisplayName)
{
return null;
}
// Token: 0x06000668 RID: 1640 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000668")]
[Address(RVA = "0x49B8E0", Offset = "0x49A6E0", VA = "0x18049B8E0")]
private static void InitializeCultureInfoMap()
{
}
// Token: 0x0400049B RID: 1179
[Token(Token = "0x400049B")]
private static Dictionary<string, string> cultureInfoNameMap;
}
}
}
@@ -0,0 +1,157 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides a simple default implementation of the <see cref="T:System.ComponentModel.ICustomTypeDescriptor" /> interface.</summary>
// Token: 0x02000107 RID: 263
[Token(Token = "0x2000107")]
public abstract class CustomTypeDescriptor : ICustomTypeDescriptor
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.CustomTypeDescriptor" /> class.</summary>
// Token: 0x06000669 RID: 1641 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000669")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
protected CustomTypeDescriptor()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.CustomTypeDescriptor" /> class using a parent custom type descriptor.</summary>
/// <param name="parent">The parent custom type descriptor.</param>
// Token: 0x0600066A RID: 1642 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600066A")]
[Address(RVA = "0x3FFB80", Offset = "0x3FE980", VA = "0x1803FFB80")]
protected CustomTypeDescriptor(ICustomTypeDescriptor parent)
{
}
/// <summary>Returns a collection of custom attributes for the type represented by this type descriptor.</summary>
/// <returns>An <see cref="T:System.ComponentModel.AttributeCollection" /> containing the attributes for the type. The default is <see cref="F:System.ComponentModel.AttributeCollection.Empty" />.</returns>
// Token: 0x0600066B RID: 1643 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600066B")]
[Address(RVA = "0x49D860", Offset = "0x49C660", VA = "0x18049D860", Slot = "16")]
public virtual AttributeCollection GetAttributes()
{
return null;
}
/// <summary>Returns the fully qualified name of the class represented by this type descriptor.</summary>
/// <returns>A <see cref="T:System.String" /> containing the fully qualified class name of the type this type descriptor is describing. The default is <see langword="null" />.</returns>
// Token: 0x0600066C RID: 1644 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600066C")]
[Address(RVA = "0x49D950", Offset = "0x49C750", VA = "0x18049D950", Slot = "17")]
public virtual string GetClassName()
{
return null;
}
/// <summary>Returns the name of the class represented by this type descriptor.</summary>
/// <returns>A <see cref="T:System.String" /> containing the name of the component instance this type descriptor is describing. The default is <see langword="null" />.</returns>
// Token: 0x0600066D RID: 1645 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600066D")]
[Address(RVA = "0x49D9A0", Offset = "0x49C7A0", VA = "0x18049D9A0", Slot = "18")]
public virtual string GetComponentName()
{
return null;
}
/// <summary>Returns a type converter for the type represented by this type descriptor.</summary>
/// <returns>A <see cref="T:System.ComponentModel.TypeConverter" /> for the type represented by this type descriptor. The default is a newly created <see cref="T:System.ComponentModel.TypeConverter" />.</returns>
// Token: 0x0600066E RID: 1646 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600066E")]
[Address(RVA = "0x49D9F0", Offset = "0x49C7F0", VA = "0x18049D9F0", Slot = "19")]
public virtual TypeConverter GetConverter()
{
return null;
}
/// <summary>Returns the event descriptor for the default event of the object represented by this type descriptor.</summary>
/// <returns>The <see cref="T:System.ComponentModel.EventDescriptor" /> for the default event on the object represented by this type descriptor. The default is <see langword="null" />.</returns>
// Token: 0x0600066F RID: 1647 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600066F")]
[Address(RVA = "0x49DAC0", Offset = "0x49C8C0", VA = "0x18049DAC0", Slot = "20")]
public virtual EventDescriptor GetDefaultEvent()
{
return null;
}
/// <summary>Returns the property descriptor for the default property of the object represented by this type descriptor.</summary>
/// <returns>A <see cref="T:System.ComponentModel.PropertyDescriptor" /> for the default property on the object represented by this type descriptor. The default is <see langword="null" />.</returns>
// Token: 0x06000670 RID: 1648 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000670")]
[Address(RVA = "0x49DB80", Offset = "0x49C980", VA = "0x18049DB80", Slot = "21")]
public virtual PropertyDescriptor GetDefaultProperty()
{
return null;
}
/// <summary>Returns an editor of the specified type that is to be associated with the class represented by this type descriptor.</summary>
/// <param name="editorBaseType">The base type of the editor to retrieve.</param>
/// <returns>An editor of the given type that is to be associated with the class represented by this type descriptor. The default is <see langword="null" />.</returns>
// Token: 0x06000671 RID: 1649 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000671")]
[Address(RVA = "0x49DC40", Offset = "0x49CA40", VA = "0x18049DC40", Slot = "22")]
public virtual object GetEditor(Type editorBaseType)
{
return null;
}
/// <summary>Returns a collection of event descriptors for the object represented by this type descriptor.</summary>
/// <returns>An <see cref="T:System.ComponentModel.EventDescriptorCollection" /> containing the event descriptors for the object represented by this type descriptor. The default is <see cref="F:System.ComponentModel.EventDescriptorCollection.Empty" />.</returns>
// Token: 0x06000672 RID: 1650 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000672")]
[Address(RVA = "0x49DCA0", Offset = "0x49CAA0", VA = "0x18049DCA0", Slot = "23")]
public virtual EventDescriptorCollection GetEvents()
{
return null;
}
/// <summary>Returns a filtered collection of event descriptors for the object represented by this type descriptor.</summary>
/// <param name="attributes">An array of attributes to use as a filter. This can be <see langword="null" />.</param>
/// <returns>An <see cref="T:System.ComponentModel.EventDescriptorCollection" /> containing the event descriptions for the object represented by this type descriptor. The default is <see cref="F:System.ComponentModel.EventDescriptorCollection.Empty" />.</returns>
// Token: 0x06000673 RID: 1651 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000673")]
[Address(RVA = "0x49DD90", Offset = "0x49CB90", VA = "0x18049DD90", Slot = "24")]
public virtual EventDescriptorCollection GetEvents(Attribute[] attributes)
{
return null;
}
/// <summary>Returns a collection of property descriptors for the object represented by this type descriptor.</summary>
/// <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> containing the property descriptions for the object represented by this type descriptor. The default is <see cref="F:System.ComponentModel.PropertyDescriptorCollection.Empty" />.</returns>
// Token: 0x06000674 RID: 1652 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000674")]
[Address(RVA = "0x49DE80", Offset = "0x49CC80", VA = "0x18049DE80", Slot = "25")]
public virtual PropertyDescriptorCollection GetProperties()
{
return null;
}
/// <summary>Returns a filtered collection of property descriptors for the object represented by this type descriptor.</summary>
/// <param name="attributes">An array of attributes to use as a filter. This can be <see langword="null" />.</param>
/// <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> containing the property descriptions for the object represented by this type descriptor. The default is <see cref="F:System.ComponentModel.PropertyDescriptorCollection.Empty" />.</returns>
// Token: 0x06000675 RID: 1653 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000675")]
[Address(RVA = "0x49DF70", Offset = "0x49CD70", VA = "0x18049DF70", Slot = "26")]
public virtual PropertyDescriptorCollection GetProperties(Attribute[] attributes)
{
return null;
}
/// <summary>Returns an object that contains the property described by the specified property descriptor.</summary>
/// <param name="pd">The property descriptor for which to retrieve the owning object.</param>
/// <returns>An <see cref="T:System.Object" /> that owns the given property specified by the type descriptor. The default is <see langword="null" />.</returns>
// Token: 0x06000676 RID: 1654 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000676")]
[Address(RVA = "0x49E060", Offset = "0x49CE60", VA = "0x18049E060", Slot = "27")]
public virtual object GetPropertyOwner(PropertyDescriptor pd)
{
return null;
}
// Token: 0x0400049C RID: 1180
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400049C")]
private ICustomTypeDescriptor _parent;
}
}
@@ -0,0 +1,40 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides data for the <see cref="E:System.ComponentModel.INotifyDataErrorInfo.ErrorsChanged" /> event.</summary>
// Token: 0x02000108 RID: 264
[Token(Token = "0x2000108")]
public class DataErrorsChangedEventArgs : EventArgs
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DataErrorsChangedEventArgs" /> class.</summary>
/// <param name="propertyName">The name of the property that has an error. <see langword="null" /> or <see cref="F:System.String.Empty" /> if the error is object-level.</param>
// Token: 0x06000677 RID: 1655 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000677")]
[Address(RVA = "0x49E120", Offset = "0x49CF20", VA = "0x18049E120")]
public DataErrorsChangedEventArgs(string propertyName)
{
}
/// <summary>Gets the name of the property that has an error.</summary>
/// <returns>The name of the property that has an error. <see langword="null" /> or <see cref="F:System.String.Empty" /> if the error is object-level.</returns>
// Token: 0x17000123 RID: 291
// (get) Token: 0x06000678 RID: 1656 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000123")]
public virtual string PropertyName
{
[Token(Token = "0x6000678")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20", Slot = "4")]
get
{
return null;
}
}
// Token: 0x0400049D RID: 1181
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400049D")]
private readonly string propertyName;
}
}
@@ -0,0 +1,99 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Identifies a type as an object suitable for binding to an <see cref="T:System.Web.UI.WebControls.ObjectDataSource" /> object. This class cannot be inherited.</summary>
// Token: 0x02000109 RID: 265
[Token(Token = "0x2000109")]
[AttributeUsage(AttributeTargets.Class)]
public sealed class DataObjectAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DataObjectAttribute" /> class.</summary>
// Token: 0x06000679 RID: 1657 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000679")]
[Address(RVA = "0x49E350", Offset = "0x49D150", VA = "0x18049E350")]
public DataObjectAttribute()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DataObjectAttribute" /> class and indicates whether an object is suitable for binding to an <see cref="T:System.Web.UI.WebControls.ObjectDataSource" /> object.</summary>
/// <param name="isDataObject">
/// <see langword="true" /> if the object is suitable for binding to an <see cref="T:System.Web.UI.WebControls.ObjectDataSource" /> object; otherwise, <see langword="false" />.</param>
// Token: 0x0600067A RID: 1658 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600067A")]
[Address(RVA = "0x49E320", Offset = "0x49D120", VA = "0x18049E320")]
public DataObjectAttribute(bool isDataObject)
{
}
/// <summary>Gets a value indicating whether an object should be considered suitable for binding to an <see cref="T:System.Web.UI.WebControls.ObjectDataSource" /> object at design time.</summary>
/// <returns>
/// <see langword="true" /> if the object should be considered suitable for binding to an <see cref="T:System.Web.UI.WebControls.ObjectDataSource" /> object; otherwise, <see langword="false" />.</returns>
// Token: 0x17000124 RID: 292
// (get) Token: 0x0600067B RID: 1659 RVA: 0x000047B8 File Offset: 0x000029B8
[Token(Token = "0x17000124")]
public bool IsDataObject
{
[Token(Token = "0x600067B")]
[Address(RVA = "0x42D5E0", Offset = "0x42C3E0", VA = "0x18042D5E0")]
get
{
return default(bool);
}
}
/// <summary>Determines whether this instance of <see cref="T:System.ComponentModel.DataObjectAttribute" /> fits the pattern of another object.</summary>
/// <param name="obj">An object to compare with this instance of <see cref="T:System.ComponentModel.DataObjectAttribute" />.</param>
/// <returns>
/// <see langword="true" /> if this instance is the same as the instance specified by the <paramref name="obj" /> parameter; otherwise, <see langword="false" />.</returns>
// Token: 0x0600067C RID: 1660 RVA: 0x000047D0 File Offset: 0x000029D0
[Token(Token = "0x600067C")]
[Address(RVA = "0x49E190", Offset = "0x49CF90", VA = "0x18049E190", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// Token: 0x0600067D RID: 1661 RVA: 0x000047E8 File Offset: 0x000029E8
[Token(Token = "0x600067D")]
[Address(RVA = "0x494E40", Offset = "0x493C40", VA = "0x180494E40", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Gets a value indicating whether the current value of the attribute is the default value for the attribute.</summary>
/// <returns>
/// <see langword="true" /> if the current value of the attribute is the default; otherwise, <see langword="false" />.</returns>
// Token: 0x0600067E RID: 1662 RVA: 0x00004800 File Offset: 0x00002A00
[Token(Token = "0x600067E")]
[Address(RVA = "0x49E210", Offset = "0x49D010", VA = "0x18049E210", Slot = "6")]
public override bool IsDefaultAttribute()
{
return default(bool);
}
/// <summary>Indicates that the class is suitable for binding to an <see cref="T:System.Web.UI.WebControls.ObjectDataSource" /> object at design time. This field is read-only.</summary>
// Token: 0x0400049E RID: 1182
[Token(Token = "0x400049E")]
public static readonly DataObjectAttribute DataObject;
/// <summary>Indicates that the class is not suitable for binding to an <see cref="T:System.Web.UI.WebControls.ObjectDataSource" /> object at design time. This field is read-only.</summary>
// Token: 0x0400049F RID: 1183
[Token(Token = "0x400049F")]
public static readonly DataObjectAttribute NonDataObject;
/// <summary>Represents the default value of the <see cref="T:System.ComponentModel.DataObjectAttribute" /> class, which indicates that the class is suitable for binding to an <see cref="T:System.Web.UI.WebControls.ObjectDataSource" /> object at design time. This field is read-only.</summary>
// Token: 0x040004A0 RID: 1184
[Token(Token = "0x40004A0")]
public static readonly DataObjectAttribute Default;
// Token: 0x040004A1 RID: 1185
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40004A1")]
private bool _isDataObject;
}
}
@@ -0,0 +1,168 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides metadata for a property representing a data field. This class cannot be inherited.</summary>
// Token: 0x0200010A RID: 266
[Token(Token = "0x200010A")]
[AttributeUsage(AttributeTargets.Property)]
public sealed class DataObjectFieldAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DataObjectFieldAttribute" /> class and indicates whether the field is the primary key for the data row.</summary>
/// <param name="primaryKey">
/// <see langword="true" /> to indicate that the field is in the primary key of the data row; otherwise, <see langword="false" />.</param>
// Token: 0x06000680 RID: 1664 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000680")]
[Address(RVA = "0x49E500", Offset = "0x49D300", VA = "0x18049E500")]
public DataObjectFieldAttribute(bool primaryKey)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DataObjectFieldAttribute" /> class and indicates whether the field is the primary key for the data row, and whether the field is a database identity field.</summary>
/// <param name="primaryKey">
/// <see langword="true" /> to indicate that the field is in the primary key of the data row; otherwise, <see langword="false" />.</param>
/// <param name="isIdentity">
/// <see langword="true" /> to indicate that the field is an identity field that uniquely identifies the data row; otherwise, <see langword="false" />.</param>
// Token: 0x06000681 RID: 1665 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000681")]
[Address(RVA = "0x49E4B0", Offset = "0x49D2B0", VA = "0x18049E4B0")]
public DataObjectFieldAttribute(bool primaryKey, bool isIdentity)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DataObjectFieldAttribute" /> class and indicates whether the field is the primary key for the data row, whether the field is a database identity field, and whether the field can be null.</summary>
/// <param name="primaryKey">
/// <see langword="true" /> to indicate that the field is in the primary key of the data row; otherwise, <see langword="false" />.</param>
/// <param name="isIdentity">
/// <see langword="true" /> to indicate that the field is an identity field that uniquely identifies the data row; otherwise, <see langword="false" />.</param>
/// <param name="isNullable">
/// <see langword="true" /> to indicate that the field can be null in the data store; otherwise, <see langword="false" />.</param>
// Token: 0x06000682 RID: 1666 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000682")]
[Address(RVA = "0x49E410", Offset = "0x49D210", VA = "0x18049E410")]
public DataObjectFieldAttribute(bool primaryKey, bool isIdentity, bool isNullable)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DataObjectFieldAttribute" /> class and indicates whether the field is the primary key for the data row, whether it is a database identity field, and whether it can be null and sets the length of the field.</summary>
/// <param name="primaryKey">
/// <see langword="true" /> to indicate that the field is in the primary key of the data row; otherwise, <see langword="false" />.</param>
/// <param name="isIdentity">
/// <see langword="true" /> to indicate that the field is an identity field that uniquely identifies the data row; otherwise, <see langword="false" />.</param>
/// <param name="isNullable">
/// <see langword="true" /> to indicate that the field can be null in the data store; otherwise, <see langword="false" />.</param>
/// <param name="length">The length of the field in bytes.</param>
// Token: 0x06000683 RID: 1667 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000683")]
[Address(RVA = "0x49E460", Offset = "0x49D260", VA = "0x18049E460")]
public DataObjectFieldAttribute(bool primaryKey, bool isIdentity, bool isNullable, int length)
{
}
/// <summary>Gets a value indicating whether a property represents an identity field in the underlying data.</summary>
/// <returns>
/// <see langword="true" /> if the property represents an identity field in the underlying data; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
// Token: 0x17000125 RID: 293
// (get) Token: 0x06000684 RID: 1668 RVA: 0x00004818 File Offset: 0x00002A18
[Token(Token = "0x17000125")]
public bool IsIdentity
{
[Token(Token = "0x6000684")]
[Address(RVA = "0x49E540", Offset = "0x49D340", VA = "0x18049E540")]
get
{
return default(bool);
}
}
/// <summary>Gets a value indicating whether a property represents a field that can be null in the underlying data store.</summary>
/// <returns>
/// <see langword="true" /> if the property represents a field that can be null in the underlying data store; otherwise, <see langword="false" />.</returns>
// Token: 0x17000126 RID: 294
// (get) Token: 0x06000685 RID: 1669 RVA: 0x00004830 File Offset: 0x00002A30
[Token(Token = "0x17000126")]
public bool IsNullable
{
[Token(Token = "0x6000685")]
[Address(RVA = "0x49E550", Offset = "0x49D350", VA = "0x18049E550")]
get
{
return default(bool);
}
}
/// <summary>Gets the length of the property in bytes.</summary>
/// <returns>The length of the property in bytes, or -1 if not set.</returns>
// Token: 0x17000127 RID: 295
// (get) Token: 0x06000686 RID: 1670 RVA: 0x00004848 File Offset: 0x00002A48
[Token(Token = "0x17000127")]
public int Length
{
[Token(Token = "0x6000686")]
[Address(RVA = "0x495080", Offset = "0x493E80", VA = "0x180495080")]
get
{
return 0;
}
}
/// <summary>Gets a value indicating whether a property is in the primary key in the underlying data.</summary>
/// <returns>
/// <see langword="true" /> if the property is in the primary key of the data store; otherwise, <see langword="false" />.</returns>
// Token: 0x17000128 RID: 296
// (get) Token: 0x06000687 RID: 1671 RVA: 0x00004860 File Offset: 0x00002A60
[Token(Token = "0x17000128")]
public bool PrimaryKey
{
[Token(Token = "0x6000687")]
[Address(RVA = "0x42D5E0", Offset = "0x42C3E0", VA = "0x18042D5E0")]
get
{
return default(bool);
}
}
/// <summary>Returns a value indicating whether this instance is equal to a specified object.</summary>
/// <param name="obj">An object to compare with this instance of <see cref="T:System.ComponentModel.DataObjectFieldAttribute" />.</param>
/// <returns>
/// <see langword="true" /> if this instance is the same as the instance specified by the <paramref name="obj" /> parameter; otherwise, <see langword="false" />.</returns>
// Token: 0x06000688 RID: 1672 RVA: 0x00004878 File Offset: 0x00002A78
[Token(Token = "0x6000688")]
[Address(RVA = "0x49E370", Offset = "0x49D170", VA = "0x18049E370", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// Token: 0x06000689 RID: 1673 RVA: 0x00004890 File Offset: 0x00002A90
[Token(Token = "0x6000689")]
[Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x040004A2 RID: 1186
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40004A2")]
private bool _primaryKey;
// Token: 0x040004A3 RID: 1187
[FieldOffset(Offset = "0x11")]
[Token(Token = "0x40004A3")]
private bool _isIdentity;
// Token: 0x040004A4 RID: 1188
[FieldOffset(Offset = "0x12")]
[Token(Token = "0x40004A4")]
private bool _isNullable;
// Token: 0x040004A5 RID: 1189
[FieldOffset(Offset = "0x14")]
[Token(Token = "0x40004A5")]
private int _length;
}
}
@@ -0,0 +1,107 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Identifies a data operation method exposed by a type, what type of operation the method performs, and whether the method is the default data method. This class cannot be inherited.</summary>
// Token: 0x0200010B RID: 267
[Token(Token = "0x200010B")]
[AttributeUsage(AttributeTargets.Method)]
public sealed class DataObjectMethodAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DataObjectMethodAttribute" /> class and identifies the type of data operation the method performs.</summary>
/// <param name="methodType">One of the <see cref="T:System.ComponentModel.DataObjectMethodType" /> values that describes the data operation the method performs.</param>
// Token: 0x0600068A RID: 1674 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600068A")]
[Address(RVA = "0x49E6F0", Offset = "0x49D4F0", VA = "0x18049E6F0")]
public DataObjectMethodAttribute(DataObjectMethodType methodType)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DataObjectMethodAttribute" /> class, identifies the type of data operation the method performs, and identifies whether the method is the default data method that the data object exposes.</summary>
/// <param name="methodType">One of the <see cref="T:System.ComponentModel.DataObjectMethodType" /> values that describes the data operation the method performs.</param>
/// <param name="isDefault">
/// <see langword="true" /> to indicate the method that the attribute is applied to is the default method of the data object for the specified <paramref name="methodType" />; otherwise, <see langword="false" />.</param>
// Token: 0x0600068B RID: 1675 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600068B")]
[Address(RVA = "0x49E6B0", Offset = "0x49D4B0", VA = "0x18049E6B0")]
public DataObjectMethodAttribute(DataObjectMethodType methodType, bool isDefault)
{
}
/// <summary>Gets a value indicating whether the method that the <see cref="T:System.ComponentModel.DataObjectMethodAttribute" /> is applied to is the default data method exposed by the data object for a specific method type.</summary>
/// <returns>
/// <see langword="true" /> if the method is the default method exposed by the object for a method type; otherwise, <see langword="false" />.</returns>
// Token: 0x17000129 RID: 297
// (get) Token: 0x0600068C RID: 1676 RVA: 0x000048A8 File Offset: 0x00002AA8
[Token(Token = "0x17000129")]
public bool IsDefault
{
[Token(Token = "0x600068C")]
[Address(RVA = "0x42D5E0", Offset = "0x42C3E0", VA = "0x18042D5E0")]
get
{
return default(bool);
}
}
/// <summary>Gets a <see cref="T:System.ComponentModel.DataObjectMethodType" /> value indicating the type of data operation the method performs.</summary>
/// <returns>One of the <see cref="T:System.ComponentModel.DataObjectMethodType" /> values that identifies the type of data operation performed by the method to which the <see cref="T:System.ComponentModel.DataObjectMethodAttribute" /> is applied.</returns>
// Token: 0x1700012A RID: 298
// (get) Token: 0x0600068D RID: 1677 RVA: 0x000048C0 File Offset: 0x00002AC0
[Token(Token = "0x1700012A")]
public DataObjectMethodType MethodType
{
[Token(Token = "0x600068D")]
[Address(RVA = "0x495080", Offset = "0x493E80", VA = "0x180495080")]
get
{
return DataObjectMethodType.Fill;
}
}
/// <summary>Returns a value indicating whether this instance is equal to a specified object.</summary>
/// <param name="obj">An object to compare with this instance of <see cref="T:System.ComponentModel.DataObjectMethodAttribute" />.</param>
/// <returns>
/// <see langword="true" /> if this instance is the same as the instance specified by the <paramref name="obj" /> parameter; otherwise, <see langword="false" />.</returns>
// Token: 0x0600068E RID: 1678 RVA: 0x000048D8 File Offset: 0x00002AD8
[Token(Token = "0x600068E")]
[Address(RVA = "0x49E560", Offset = "0x49D360", VA = "0x18049E560", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// Token: 0x0600068F RID: 1679 RVA: 0x000048F0 File Offset: 0x00002AF0
[Token(Token = "0x600068F")]
[Address(RVA = "0x49E5F0", Offset = "0x49D3F0", VA = "0x18049E5F0", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Gets a value indicating whether this instance shares a common pattern with a specified attribute.</summary>
/// <param name="obj">An object to compare with this instance of <see cref="T:System.ComponentModel.DataObjectMethodAttribute" />.</param>
/// <returns>
/// <see langword="true" /> if this instance is the same as the instance specified by the <paramref name="obj" /> parameter; otherwise, <see langword="false" />.</returns>
// Token: 0x06000690 RID: 1680 RVA: 0x00004908 File Offset: 0x00002B08
[Token(Token = "0x6000690")]
[Address(RVA = "0x49E630", Offset = "0x49D430", VA = "0x18049E630", Slot = "5")]
public override bool Match(object obj)
{
return default(bool);
}
// Token: 0x040004A6 RID: 1190
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40004A6")]
private bool _isDefault;
// Token: 0x040004A7 RID: 1191
[FieldOffset(Offset = "0x14")]
[Token(Token = "0x40004A7")]
private DataObjectMethodType _methodType;
}
}
@@ -0,0 +1,32 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Identifies the type of data operation performed by a method, as specified by the <see cref="T:System.ComponentModel.DataObjectMethodAttribute" /> applied to the method.</summary>
// Token: 0x0200010C RID: 268
[Token(Token = "0x200010C")]
public enum DataObjectMethodType
{
/// <summary>Indicates that a method is used for a data operation that fills a <see cref="T:System.Data.DataSet" /> object.</summary>
// Token: 0x040004A9 RID: 1193
[Token(Token = "0x40004A9")]
Fill,
/// <summary>Indicates that a method is used for a data operation that retrieves data.</summary>
// Token: 0x040004AA RID: 1194
[Token(Token = "0x40004AA")]
Select,
/// <summary>Indicates that a method is used for a data operation that updates data.</summary>
// Token: 0x040004AB RID: 1195
[Token(Token = "0x40004AB")]
Update,
/// <summary>Indicates that a method is used for a data operation that inserts data.</summary>
// Token: 0x040004AC RID: 1196
[Token(Token = "0x40004AC")]
Insert,
/// <summary>Indicates that a method is used for a data operation that deletes data.</summary>
// Token: 0x040004AD RID: 1197
[Token(Token = "0x40004AD")]
Delete
}
}
@@ -0,0 +1,77 @@
using System;
using System.Globalization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides a type converter to convert <see cref="T:System.DateTime" /> objects to and from various other representations.</summary>
// Token: 0x0200010D RID: 269
[Token(Token = "0x200010D")]
public class DateTimeConverter : TypeConverter
{
/// <summary>Gets a value indicating whether this converter can convert an object in the given source type to a <see cref="T:System.DateTime" /> using the specified context.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="sourceType">A <see cref="T:System.Type" /> that represents the type you wish to convert from.</param>
/// <returns>
/// <see langword="true" /> if this object can perform the conversion; otherwise, <see langword="false" />.</returns>
// Token: 0x06000691 RID: 1681 RVA: 0x00004920 File Offset: 0x00002B20
[Token(Token = "0x6000691")]
[Address(RVA = "0x49E720", Offset = "0x49D520", VA = "0x18049E720", Slot = "4")]
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
{
return default(bool);
}
/// <summary>Gets a value indicating whether this converter can convert an object to the given destination type using the context.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="destinationType">A <see cref="T:System.Type" /> that represents the type you wish to convert to.</param>
/// <returns>
/// <see langword="true" /> if this converter can perform the conversion; otherwise, <see langword="false" />.</returns>
// Token: 0x06000692 RID: 1682 RVA: 0x00004938 File Offset: 0x00002B38
[Token(Token = "0x6000692")]
[Address(RVA = "0x49E7D0", Offset = "0x49D5D0", VA = "0x18049E7D0", Slot = "5")]
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
{
return default(bool);
}
/// <summary>Converts the given value object to a <see cref="T:System.DateTime" />.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="culture">An optional <see cref="T:System.Globalization.CultureInfo" />. If not supplied, the current culture is assumed.</param>
/// <param name="value">The <see cref="T:System.Object" /> to convert.</param>
/// <returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="value" /> is not a valid value for the target type.</exception>
/// <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
// Token: 0x06000693 RID: 1683 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000693")]
[Address(RVA = "0x49E880", Offset = "0x49D680", VA = "0x18049E880", Slot = "6")]
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
return null;
}
/// <summary>Converts the given value object to a <see cref="T:System.DateTime" /> using the arguments.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="culture">An optional <see cref="T:System.Globalization.CultureInfo" />. If not supplied, the current culture is assumed.</param>
/// <param name="value">The <see cref="T:System.Object" /> to convert.</param>
/// <param name="destinationType">The <see cref="T:System.Type" /> to convert the value to.</param>
/// <returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
/// <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
// Token: 0x06000694 RID: 1684 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000694")]
[Address(RVA = "0x49EB70", Offset = "0x49D970", VA = "0x18049EB70", Slot = "7")]
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
{
return null;
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DateTimeConverter" /> class.</summary>
// Token: 0x06000695 RID: 1685 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000695")]
[Address(RVA = "0x49F620", Offset = "0x49E420", VA = "0x18049F620")]
public DateTimeConverter()
{
}
}
}
@@ -0,0 +1,75 @@
using System;
using System.Globalization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides a type converter to convert <see cref="T:System.DateTimeOffset" /> structures to and from various other representations.</summary>
// Token: 0x0200010E RID: 270
[Token(Token = "0x200010E")]
public class DateTimeOffsetConverter : TypeConverter
{
/// <summary>Returns a value that indicates whether an object of the specified source type can be converted to a <see cref="T:System.DateTimeOffset" />.</summary>
/// <param name="context">The date format context.</param>
/// <param name="sourceType">The source type to check.</param>
/// <returns>
/// <see langword="true" /> if the specified type can be converted to a <see cref="T:System.DateTimeOffset" />; otherwise, <see langword="false" />.</returns>
// Token: 0x06000696 RID: 1686 RVA: 0x00004950 File Offset: 0x00002B50
[Token(Token = "0x6000696")]
[Address(RVA = "0x49F680", Offset = "0x49E480", VA = "0x18049F680", Slot = "4")]
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
{
return default(bool);
}
/// <summary>Returns a value that indicates whether a <see cref="T:System.DateTimeOffset" /> can be converted to an object of the specified type.</summary>
/// <param name="context">The date format context.</param>
/// <param name="destinationType">The destination type to check.</param>
/// <returns>
/// <see langword="true" /> if a <see cref="T:System.DateTimeOffset" /> can be converted to the specified type; otherwise, <see langword="false" />.</returns>
// Token: 0x06000697 RID: 1687 RVA: 0x00004968 File Offset: 0x00002B68
[Token(Token = "0x6000697")]
[Address(RVA = "0x49F730", Offset = "0x49E530", VA = "0x18049F730", Slot = "5")]
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
{
return default(bool);
}
/// <summary>Converts the specified object to a <see cref="T:System.DateTimeOffset" />.</summary>
/// <param name="context">The date format context.</param>
/// <param name="culture">The date culture.</param>
/// <param name="value">The object to be converted.</param>
/// <returns>A <see cref="T:System.DateTimeOffset" /> that represents the specified object.</returns>
/// <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
// Token: 0x06000698 RID: 1688 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000698")]
[Address(RVA = "0x49F7E0", Offset = "0x49E5E0", VA = "0x18049F7E0", Slot = "6")]
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
return null;
}
/// <summary>Converts a <see cref="T:System.DateTimeOffset" /> to an object of the specified type.</summary>
/// <param name="context">The date format context.</param>
/// <param name="culture">The date culture.</param>
/// <param name="value">The <see cref="T:System.DateTimeOffset" /> to be converted.</param>
/// <param name="destinationType">The type to convert to.</param>
/// <returns>An object of the specified type that represents the <see cref="T:System.DateTimeOffset" />.</returns>
/// <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
// Token: 0x06000699 RID: 1689 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000699")]
[Address(RVA = "0x49FAE0", Offset = "0x49E8E0", VA = "0x18049FAE0", Slot = "7")]
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
{
return null;
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DateTimeOffsetConverter" /> class.</summary>
// Token: 0x0600069A RID: 1690 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600069A")]
[Address(RVA = "0x4A06A0", Offset = "0x49F4A0", VA = "0x1804A06A0")]
public DateTimeOffsetConverter()
{
}
}
}
+107
View File
@@ -0,0 +1,107 @@
using System;
using System.Globalization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides a type converter to convert <see cref="T:System.Decimal" /> objects to and from various other representations.</summary>
// Token: 0x0200010F RID: 271
[Token(Token = "0x200010F")]
public class DecimalConverter : BaseNumberConverter
{
// Token: 0x1700012B RID: 299
// (get) Token: 0x0600069B RID: 1691 RVA: 0x00004980 File Offset: 0x00002B80
[Token(Token = "0x1700012B")]
internal override bool AllowHex
{
[Token(Token = "0x600069B")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "16")]
get
{
return default(bool);
}
}
// Token: 0x1700012C RID: 300
// (get) Token: 0x0600069C RID: 1692 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700012C")]
internal override Type TargetType
{
[Token(Token = "0x600069C")]
[Address(RVA = "0x4A0D30", Offset = "0x49FB30", VA = "0x1804A0D30", Slot = "17")]
get
{
return null;
}
}
/// <summary>Gets a value indicating whether this converter can convert an object to the given destination type using the context.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="destinationType">A <see cref="T:System.Type" /> that represents the type you wish to convert to.</param>
/// <returns>
/// <see langword="true" /> if this converter can perform the conversion; otherwise, <see langword="false" />.</returns>
// Token: 0x0600069D RID: 1693 RVA: 0x00004998 File Offset: 0x00002B98
[Token(Token = "0x600069D")]
[Address(RVA = "0x4A0700", Offset = "0x49F500", VA = "0x1804A0700", Slot = "5")]
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
{
return default(bool);
}
/// <summary>Converts the given value object to a <see cref="T:System.Decimal" /> using the arguments.</summary>
/// <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
/// <param name="culture">An optional <see cref="T:System.Globalization.CultureInfo" />. If not supplied, the current culture is assumed.</param>
/// <param name="value">The <see cref="T:System.Object" /> to convert.</param>
/// <param name="destinationType">The <see cref="T:System.Type" /> to convert the value to.</param>
/// <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="destinationType" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
// Token: 0x0600069E RID: 1694 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600069E")]
[Address(RVA = "0x4A07C0", Offset = "0x49F5C0", VA = "0x1804A07C0", Slot = "7")]
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
{
return null;
}
// Token: 0x0600069F RID: 1695 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600069F")]
[Address(RVA = "0x4A0AE0", Offset = "0x49F8E0", VA = "0x1804A0AE0", Slot = "18")]
internal override object FromString(string value, int radix)
{
return null;
}
// Token: 0x060006A0 RID: 1696 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60006A0")]
[Address(RVA = "0x4A0B90", Offset = "0x49F990", VA = "0x1804A0B90", Slot = "19")]
internal override object FromString(string value, NumberFormatInfo formatInfo)
{
return null;
}
// Token: 0x060006A1 RID: 1697 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60006A1")]
[Address(RVA = "0x4A0C20", Offset = "0x49FA20", VA = "0x1804A0C20", Slot = "20")]
internal override object FromString(string value, CultureInfo culture)
{
return null;
}
// Token: 0x060006A2 RID: 1698 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60006A2")]
[Address(RVA = "0x4A0CA0", Offset = "0x49FAA0", VA = "0x1804A0CA0", Slot = "22")]
internal override string ToString(object value, NumberFormatInfo formatInfo)
{
return null;
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DecimalConverter" /> class.</summary>
// Token: 0x060006A3 RID: 1699 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006A3")]
[Address(RVA = "0x494D40", Offset = "0x493B40", VA = "0x180494D40")]
public DecimalConverter()
{
}
}
}
@@ -0,0 +1,76 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies the default binding property for a component. This class cannot be inherited.</summary>
// Token: 0x02000110 RID: 272
[Token(Token = "0x2000110")]
[AttributeUsage(AttributeTargets.Class)]
public sealed class DefaultBindingPropertyAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultBindingPropertyAttribute" /> class using no parameters.</summary>
// Token: 0x060006A4 RID: 1700 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006A4")]
[Address(RVA = "0x4E7250", Offset = "0x4E6050", VA = "0x1804E7250")]
public DefaultBindingPropertyAttribute()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultBindingPropertyAttribute" /> class using the specified property name.</summary>
/// <param name="name">The name of the default binding property.</param>
// Token: 0x060006A5 RID: 1701 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006A5")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
public DefaultBindingPropertyAttribute(string name)
{
}
/// <summary>Gets the name of the default binding property for the component to which the <see cref="T:System.ComponentModel.DefaultBindingPropertyAttribute" /> is bound.</summary>
/// <returns>The name of the default binding property for the component to which the <see cref="T:System.ComponentModel.DefaultBindingPropertyAttribute" /> is bound.</returns>
// Token: 0x1700012D RID: 301
// (get) Token: 0x060006A6 RID: 1702 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700012D")]
public string Name
{
[Token(Token = "0x60006A6")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
/// <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.ComponentModel.DefaultBindingPropertyAttribute" /> instance.</summary>
/// <param name="obj">The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.ComponentModel.DefaultBindingPropertyAttribute" /> instance</param>
/// <returns>
/// <see langword="true" /> if the object is equal to the current instance; otherwise, <see langword="false" />, indicating they are not equal.</returns>
// Token: 0x060006A7 RID: 1703 RVA: 0x000049B0 File Offset: 0x00002BB0
[Token(Token = "0x60006A7")]
[Address(RVA = "0x4E7180", Offset = "0x4E5F80", VA = "0x1804E7180", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// Token: 0x060006A8 RID: 1704 RVA: 0x000049C8 File Offset: 0x00002BC8
[Token(Token = "0x60006A8")]
[Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x040004AE RID: 1198
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40004AE")]
private readonly string name;
/// <summary>Represents the default value for the <see cref="T:System.ComponentModel.DefaultBindingPropertyAttribute" /> class.</summary>
// Token: 0x040004AF RID: 1199
[Token(Token = "0x40004AF")]
public static readonly DefaultBindingPropertyAttribute Default;
}
}
@@ -0,0 +1,68 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies the default event for a component.</summary>
// Token: 0x02000111 RID: 273
[Token(Token = "0x2000111")]
[AttributeUsage(AttributeTargets.Class)]
public sealed class DefaultEventAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultEventAttribute" /> class.</summary>
/// <param name="name">The name of the default event for the component this attribute is bound to.</param>
// Token: 0x060006AA RID: 1706 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006AA")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
public DefaultEventAttribute(string name)
{
}
/// <summary>Gets the name of the default event for the component this attribute is bound to.</summary>
/// <returns>The name of the default event for the component this attribute is bound to. The default value is <see langword="null" />.</returns>
// Token: 0x1700012E RID: 302
// (get) Token: 0x060006AB RID: 1707 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700012E")]
public string Name
{
[Token(Token = "0x60006AB")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
/// <summary>Returns whether the value of the given object is equal to the current <see cref="T:System.ComponentModel.DefaultEventAttribute" />.</summary>
/// <param name="obj">The object to test the value equality of.</param>
/// <returns>
/// <see langword="true" /> if the value of the given object is equal to that of the current; otherwise, <see langword="false" />.</returns>
// Token: 0x060006AC RID: 1708 RVA: 0x000049E0 File Offset: 0x00002BE0
[Token(Token = "0x60006AC")]
[Address(RVA = "0x4E7270", Offset = "0x4E6070", VA = "0x1804E7270", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// Token: 0x060006AD RID: 1709 RVA: 0x000049F8 File Offset: 0x00002BF8
[Token(Token = "0x60006AD")]
[Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x040004B0 RID: 1200
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40004B0")]
private readonly string name;
/// <summary>Specifies the default value for the <see cref="T:System.ComponentModel.DefaultEventAttribute" />, which is <see langword="null" />. This <see langword="static" /> field is read-only.</summary>
// Token: 0x040004B1 RID: 1201
[Token(Token = "0x40004B1")]
public static readonly DefaultEventAttribute Default;
}
}
@@ -0,0 +1,68 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies the default property for a component.</summary>
// Token: 0x02000112 RID: 274
[Token(Token = "0x2000112")]
[AttributeUsage(AttributeTargets.Class)]
public sealed class DefaultPropertyAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultPropertyAttribute" /> class.</summary>
/// <param name="name">The name of the default property for the component this attribute is bound to.</param>
// Token: 0x060006AF RID: 1711 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006AF")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
public DefaultPropertyAttribute(string name)
{
}
/// <summary>Gets the name of the default property for the component this attribute is bound to.</summary>
/// <returns>The name of the default property for the component this attribute is bound to. The default value is <see langword="null" />.</returns>
// Token: 0x1700012F RID: 303
// (get) Token: 0x060006B0 RID: 1712 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700012F")]
public string Name
{
[Token(Token = "0x60006B0")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
/// <summary>Returns whether the value of the given object is equal to the current <see cref="T:System.ComponentModel.DefaultPropertyAttribute" />.</summary>
/// <param name="obj">The object to test the value equality of.</param>
/// <returns>
/// <see langword="true" /> if the value of the given object is equal to that of the current; otherwise, <see langword="false" />.</returns>
// Token: 0x060006B1 RID: 1713 RVA: 0x00004A10 File Offset: 0x00002C10
[Token(Token = "0x60006B1")]
[Address(RVA = "0x4E7340", Offset = "0x4E6140", VA = "0x1804E7340", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// Token: 0x060006B2 RID: 1714 RVA: 0x00004A28 File Offset: 0x00002C28
[Token(Token = "0x60006B2")]
[Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x040004B2 RID: 1202
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40004B2")]
private readonly string name;
/// <summary>Specifies the default value for the <see cref="T:System.ComponentModel.DefaultPropertyAttribute" />, which is <see langword="null" />. This <see langword="static" /> field is read-only.</summary>
// Token: 0x040004B3 RID: 1203
[Token(Token = "0x40004B3")]
public static readonly DefaultPropertyAttribute Default;
}
}
@@ -0,0 +1,163 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies the default value for a property.</summary>
// Token: 0x02000113 RID: 275
[Token(Token = "0x2000113")]
[AttributeUsage(AttributeTargets.All)]
public class DefaultValueAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class, converting the specified value to the specified type, and using an invariant culture as the translation context.</summary>
/// <param name="type">A <see cref="T:System.Type" /> that represents the type to convert the value to.</param>
/// <param name="value">A <see cref="T:System.String" /> that can be converted to the type using the <see cref="T:System.ComponentModel.TypeConverter" /> for the type and the U.S. English culture.</param>
// Token: 0x060006B4 RID: 1716 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006B4")]
[Address(RVA = "0x4E7610", Offset = "0x4E6410", VA = "0x1804E7610")]
public DefaultValueAttribute(Type type, string value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class using a Unicode character.</summary>
/// <param name="value">A Unicode character that is the default value.</param>
// Token: 0x060006B5 RID: 1717 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006B5")]
[Address(RVA = "0x4E7730", Offset = "0x4E6530", VA = "0x1804E7730")]
public DefaultValueAttribute(char value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class using an 8-bit unsigned integer.</summary>
/// <param name="value">An 8-bit unsigned integer that is the default value.</param>
// Token: 0x060006B6 RID: 1718 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006B6")]
[Address(RVA = "0x4E75B0", Offset = "0x4E63B0", VA = "0x1804E75B0")]
public DefaultValueAttribute(byte value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class using a 16-bit signed integer.</summary>
/// <param name="value">A 16-bit signed integer that is the default value.</param>
// Token: 0x060006B7 RID: 1719 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006B7")]
[Address(RVA = "0x4E7550", Offset = "0x4E6350", VA = "0x1804E7550")]
public DefaultValueAttribute(short value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class using a 32-bit signed integer.</summary>
/// <param name="value">A 32-bit signed integer that is the default value.</param>
// Token: 0x060006B8 RID: 1720 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006B8")]
[Address(RVA = "0x4E7850", Offset = "0x4E6650", VA = "0x1804E7850")]
public DefaultValueAttribute(int value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class using a 64-bit signed integer.</summary>
/// <param name="value">A 64-bit signed integer that is the default value.</param>
// Token: 0x060006B9 RID: 1721 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006B9")]
[Address(RVA = "0x4E78B0", Offset = "0x4E66B0", VA = "0x1804E78B0")]
public DefaultValueAttribute(long value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class using a single-precision floating point number.</summary>
/// <param name="value">A single-precision floating point number that is the default value.</param>
// Token: 0x060006BA RID: 1722 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006BA")]
[Address(RVA = "0x4E77F0", Offset = "0x4E65F0", VA = "0x1804E77F0")]
public DefaultValueAttribute(float value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class using a double-precision floating point number.</summary>
/// <param name="value">A double-precision floating point number that is the default value.</param>
// Token: 0x060006BB RID: 1723 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006BB")]
[Address(RVA = "0x4E76D0", Offset = "0x4E64D0", VA = "0x1804E76D0")]
public DefaultValueAttribute(double value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class using a <see cref="T:System.Boolean" /> value.</summary>
/// <param name="value">A <see cref="T:System.Boolean" /> that is the default value.</param>
// Token: 0x060006BC RID: 1724 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006BC")]
[Address(RVA = "0x4E7790", Offset = "0x4E6590", VA = "0x1804E7790")]
public DefaultValueAttribute(bool value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class using a <see cref="T:System.String" />.</summary>
/// <param name="value">A <see cref="T:System.String" /> that is the default value.</param>
// Token: 0x060006BD RID: 1725 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006BD")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
public DefaultValueAttribute(string value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> class.</summary>
/// <param name="value">An <see cref="T:System.Object" /> that represents the default value.</param>
// Token: 0x060006BE RID: 1726 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006BE")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
public DefaultValueAttribute(object value)
{
}
/// <summary>Gets the default value of the property this attribute is bound to.</summary>
/// <returns>An <see cref="T:System.Object" /> that represents the default value of the property this attribute is bound to.</returns>
// Token: 0x17000130 RID: 304
// (get) Token: 0x060006BF RID: 1727 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000130")]
public virtual object Value
{
[Token(Token = "0x60006BF")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20", Slot = "7")]
get
{
return null;
}
}
/// <summary>Returns whether the value of the given object is equal to the current <see cref="T:System.ComponentModel.DefaultValueAttribute" />.</summary>
/// <param name="obj">The object to test the value equality of.</param>
/// <returns>
/// <see langword="true" /> if the value of the given object is equal to that of the current; otherwise, <see langword="false" />.</returns>
// Token: 0x060006C0 RID: 1728 RVA: 0x00004A40 File Offset: 0x00002C40
[Token(Token = "0x60006C0")]
[Address(RVA = "0x4E7410", Offset = "0x4E6210", VA = "0x1804E7410", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// Token: 0x060006C1 RID: 1729 RVA: 0x00004A58 File Offset: 0x00002C58
[Token(Token = "0x60006C1")]
[Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Sets the default value for the property to which this attribute is bound.</summary>
/// <param name="value">The default value.</param>
// Token: 0x060006C2 RID: 1730 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006C2")]
[Address(RVA = "0x3F7200", Offset = "0x3F6000", VA = "0x1803F7200")]
protected void SetValue(object value)
{
}
// Token: 0x040004B4 RID: 1204
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40004B4")]
private object value;
}
}
@@ -0,0 +1,108 @@
using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.ComponentModel
{
// Token: 0x02000114 RID: 276
[Token(Token = "0x2000114")]
internal sealed class DelegatingTypeDescriptionProvider : TypeDescriptionProvider
{
// Token: 0x060006C3 RID: 1731 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006C3")]
[Address(RVA = "0x4E7E60", Offset = "0x4E6C60", VA = "0x1804E7E60")]
internal DelegatingTypeDescriptionProvider(Type type)
{
}
// Token: 0x17000131 RID: 305
// (get) Token: 0x060006C4 RID: 1732 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000131")]
internal TypeDescriptionProvider Provider
{
[Token(Token = "0x60006C4")]
[Address(RVA = "0x4E7E90", Offset = "0x4E6C90", VA = "0x1804E7E90")]
get
{
return null;
}
}
// Token: 0x060006C5 RID: 1733 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60006C5")]
[Address(RVA = "0x4E7910", Offset = "0x4E6710", VA = "0x1804E7910", Slot = "4")]
public override object CreateInstance(IServiceProvider provider, Type objectType, Type[] argTypes, object[] args)
{
return null;
}
// Token: 0x060006C6 RID: 1734 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60006C6")]
[Address(RVA = "0x4E79C0", Offset = "0x4E67C0", VA = "0x1804E79C0", Slot = "5")]
public override IDictionary GetCache(object instance)
{
return null;
}
// Token: 0x060006C7 RID: 1735 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60006C7")]
[Address(RVA = "0x4E7B70", Offset = "0x4E6970", VA = "0x1804E7B70", Slot = "8")]
public override string GetFullComponentName(object component)
{
return null;
}
// Token: 0x060006C8 RID: 1736 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60006C8")]
[Address(RVA = "0x4E7A50", Offset = "0x4E6850", VA = "0x1804E7A50", Slot = "6")]
public override ICustomTypeDescriptor GetExtendedTypeDescriptor(object instance)
{
return null;
}
// Token: 0x060006C9 RID: 1737 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60006C9")]
[Address(RVA = "0x4E7AE0", Offset = "0x4E68E0", VA = "0x1804E7AE0", Slot = "7")]
protected internal override IExtenderProvider[] GetExtenderProviders(object instance)
{
return null;
}
// Token: 0x060006CA RID: 1738 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60006CA")]
[Address(RVA = "0x4E7C00", Offset = "0x4E6A00", VA = "0x1804E7C00", Slot = "9")]
public override Type GetReflectionType(Type objectType, object instance)
{
return null;
}
// Token: 0x060006CB RID: 1739 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60006CB")]
[Address(RVA = "0x4E7CA0", Offset = "0x4E6AA0", VA = "0x1804E7CA0", Slot = "10")]
public override Type GetRuntimeType(Type objectType)
{
return null;
}
// Token: 0x060006CC RID: 1740 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60006CC")]
[Address(RVA = "0x4E7D30", Offset = "0x4E6B30", VA = "0x1804E7D30", Slot = "11")]
public override ICustomTypeDescriptor GetTypeDescriptor(Type objectType, object instance)
{
return null;
}
// Token: 0x060006CD RID: 1741 RVA: 0x00004A70 File Offset: 0x00002C70
[Token(Token = "0x60006CD")]
[Address(RVA = "0x4E7DD0", Offset = "0x4E6BD0", VA = "0x1804E7DD0", Slot = "12")]
public override bool IsSupportedType(Type type)
{
return default(bool);
}
// Token: 0x040004B5 RID: 1205
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x40004B5")]
private Type _type;
}
}
@@ -0,0 +1,108 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies a description for a property or event.</summary>
// Token: 0x02000115 RID: 277
[Token(Token = "0x2000115")]
[AttributeUsage(AttributeTargets.All)]
public class DescriptionAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DescriptionAttribute" /> class with no parameters.</summary>
// Token: 0x060006CE RID: 1742 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006CE")]
[Address(RVA = "0x4E8100", Offset = "0x4E6F00", VA = "0x1804E8100")]
public DescriptionAttribute()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DescriptionAttribute" /> class with a description.</summary>
/// <param name="description">The description text.</param>
// Token: 0x060006CF RID: 1743 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006CF")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
public DescriptionAttribute(string description)
{
}
/// <summary>Gets the description stored in this attribute.</summary>
/// <returns>The description stored in this attribute.</returns>
// Token: 0x17000132 RID: 306
// (get) Token: 0x060006D0 RID: 1744 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000132")]
public virtual string Description
{
[Token(Token = "0x60006D0")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20", Slot = "7")]
get
{
return null;
}
}
/// <summary>Gets or sets the string stored as the description.</summary>
/// <returns>The string stored as the description. The default value is an empty string ("").</returns>
// Token: 0x17000133 RID: 307
// (get) Token: 0x060006D1 RID: 1745 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x060006D2 RID: 1746 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000133")]
protected string DescriptionValue
{
[Token(Token = "0x60006D1")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
[Token(Token = "0x60006D2")]
[Address(RVA = "0x3F7200", Offset = "0x3F6000", VA = "0x1803F7200")]
set
{
}
}
/// <summary>Returns whether the value of the given object is equal to the current <see cref="T:System.ComponentModel.DescriptionAttribute" />.</summary>
/// <param name="obj">The object to test the value equality of.</param>
/// <returns>
/// <see langword="true" /> if the value of the given object is equal to that of the current; otherwise, <see langword="false" />.</returns>
// Token: 0x060006D3 RID: 1747 RVA: 0x00004A88 File Offset: 0x00002C88
[Token(Token = "0x60006D3")]
[Address(RVA = "0x4E7EF0", Offset = "0x4E6CF0", VA = "0x1804E7EF0", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// Token: 0x060006D4 RID: 1748 RVA: 0x00004AA0 File Offset: 0x00002CA0
[Token(Token = "0x60006D4")]
[Address(RVA = "0x4E7FC0", Offset = "0x4E6DC0", VA = "0x1804E7FC0", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Returns a value indicating whether this is the default <see cref="T:System.ComponentModel.DescriptionAttribute" /> instance.</summary>
/// <returns>
/// <see langword="true" />, if this is the default <see cref="T:System.ComponentModel.DescriptionAttribute" /> instance; otherwise, <see langword="false" />.</returns>
// Token: 0x060006D5 RID: 1749 RVA: 0x00004AB8 File Offset: 0x00002CB8
[Token(Token = "0x60006D5")]
[Address(RVA = "0x4E8000", Offset = "0x4E6E00", VA = "0x1804E8000", Slot = "6")]
public override bool IsDefaultAttribute()
{
return default(bool);
}
/// <summary>Specifies the default value for the <see cref="T:System.ComponentModel.DescriptionAttribute" />, which is an empty string (""). This <see langword="static" /> field is read-only.</summary>
// Token: 0x040004B6 RID: 1206
[Token(Token = "0x40004B6")]
public static readonly DescriptionAttribute Default;
// Token: 0x040004B7 RID: 1207
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40004B7")]
private string description;
}
}
@@ -0,0 +1,47 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>The exception that is thrown when an attempt to check out a file that is checked into a source code management program is canceled or fails.</summary>
// Token: 0x020001BC RID: 444
[Token(Token = "0x20001BC")]
[Serializable]
public class CheckoutException : ExternalException
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.CheckoutException" /> class with no associated message or error code.</summary>
// Token: 0x06000C19 RID: 3097 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C19")]
[Address(RVA = "0x4E7160", Offset = "0x4E5F60", VA = "0x1804E7160")]
public CheckoutException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.CheckoutException" /> class with the specified message and error code.</summary>
/// <param name="message">A message describing the exception.</param>
/// <param name="errorCode">The error code to pass.</param>
// Token: 0x06000C1A RID: 3098 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C1A")]
[Address(RVA = "0x4E7170", Offset = "0x4E5F70", VA = "0x1804E7170")]
public CheckoutException(string message, int errorCode)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.CheckoutException" /> class using the specified serialization data and context.</summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to be used for deserialization.</param>
/// <param name="context">The destination to be used for deserialization.</param>
// Token: 0x06000C1B RID: 3099 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C1B")]
[Address(RVA = "0x4E7140", Offset = "0x4E5F40", VA = "0x1804E7140")]
protected CheckoutException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.CheckoutException" /> class that specifies that the check out was canceled. This field is read-only.</summary>
// Token: 0x04000655 RID: 1621
[Token(Token = "0x4000655")]
public static readonly CheckoutException Canceled;
}
}
@@ -0,0 +1,63 @@
using System;
using System.Collections;
using System.Reflection;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Represents a design-time license context that can support a license provider at design time.</summary>
// Token: 0x020001BD RID: 445
[Token(Token = "0x20001BD")]
public class DesigntimeLicenseContext : LicenseContext
{
/// <summary>Gets the license usage mode.</summary>
/// <returns>A <see cref="T:System.ComponentModel.LicenseUsageMode" /> indicating the licensing mode for the context.</returns>
// Token: 0x17000234 RID: 564
// (get) Token: 0x06000C1D RID: 3101 RVA: 0x00006900 File Offset: 0x00004B00
[Token(Token = "0x17000234")]
public override LicenseUsageMode UsageMode
{
[Token(Token = "0x6000C1D")]
[Address(RVA = "0x4100E0", Offset = "0x40EEE0", VA = "0x1804100E0", Slot = "5")]
get
{
return LicenseUsageMode.Runtime;
}
}
/// <summary>Gets a saved license key.</summary>
/// <param name="type">The type of the license key.</param>
/// <param name="resourceAssembly">The assembly to get the key from.</param>
/// <returns>The saved license key that matches the specified type.</returns>
// Token: 0x06000C1E RID: 3102 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C1E")]
[Address(RVA = "0x43E630", Offset = "0x43D430", VA = "0x18043E630", Slot = "6")]
public override string GetSavedLicenseKey(Type type, Assembly resourceAssembly)
{
return null;
}
/// <summary>Sets a saved license key.</summary>
/// <param name="type">The type of the license key.</param>
/// <param name="key">The license key.</param>
// Token: 0x06000C1F RID: 3103 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C1F")]
[Address(RVA = "0x4E9020", Offset = "0x4E7E20", VA = "0x1804E9020", Slot = "8")]
public override void SetSavedLicenseKey(Type type, string key)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.DesigntimeLicenseContext" /> class.</summary>
// Token: 0x06000C20 RID: 3104 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C20")]
[Address(RVA = "0x4E9080", Offset = "0x4E7E80", VA = "0x1804E9080")]
public DesigntimeLicenseContext()
{
}
// Token: 0x04000656 RID: 1622
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000656")]
internal Hashtable savedLicenseKeys;
}
}
@@ -0,0 +1,19 @@
using System;
using System.IO;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides support for design-time license context serialization.</summary>
// Token: 0x020001BF RID: 447
[Token(Token = "0x20001BF")]
public class DesigntimeLicenseContextSerializer
{
// Token: 0x06000C27 RID: 3111 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C27")]
[Address(RVA = "0x4E8E50", Offset = "0x4E7C50", VA = "0x1804E8E50")]
internal static void Deserialize(Stream o, string cryptoKey, RuntimeLicenseContext context)
{
}
}
}
@@ -0,0 +1,31 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides an interface to add and remove the event handlers for events that add, change, remove or rename components, and provides methods to raise a <see cref="E:System.ComponentModel.Design.IComponentChangeService.ComponentChanged" /> or <see cref="E:System.ComponentModel.Design.IComponentChangeService.ComponentChanging" /> event.</summary>
// Token: 0x020001C0 RID: 448
[Token(Token = "0x20001C0")]
[ComVisible(true)]
public interface IComponentChangeService
{
/// <summary>Announces to the component change service that a particular component has changed.</summary>
/// <param name="component">The component that has changed.</param>
/// <param name="member">The member that has changed. This is <see langword="null" /> if this change is not related to a single member.</param>
/// <param name="oldValue">The old value of the member. This is valid only if the member is not <see langword="null" />.</param>
/// <param name="newValue">The new value of the member. This is valid only if the member is not <see langword="null" />.</param>
// Token: 0x06000C28 RID: 3112
[Token(Token = "0x6000C28")]
[Address(Slot = "0")]
void OnComponentChanged(object component, MemberDescriptor member, object oldValue, object newValue);
/// <summary>Announces to the component change service that a particular component is changing.</summary>
/// <param name="component">The component that is about to change.</param>
/// <param name="member">The member that is changing. This is <see langword="null" /> if this change is not related to a single member.</param>
// Token: 0x06000C29 RID: 3113
[Token(Token = "0x6000C29")]
[Address(Slot = "1")]
void OnComponentChanging(object component, MemberDescriptor member);
}
}
+14
View File
@@ -0,0 +1,14 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides the basic framework for building a custom designer.</summary>
// Token: 0x020001C1 RID: 449
[Token(Token = "0x20001C1")]
[ComVisible(true)]
public interface IDesigner : IDisposable
{
}
}
@@ -0,0 +1,33 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides an interface for managing designer transactions and components.</summary>
// Token: 0x020001C2 RID: 450
[Token(Token = "0x20001C2")]
[ComVisible(true)]
public interface IDesignerHost : IServiceProvider
{
/// <summary>Gets the instance of the base class used as the root component for the current design.</summary>
/// <returns>The instance of the root component class.</returns>
// Token: 0x17000235 RID: 565
// (get) Token: 0x06000C2A RID: 3114
[Token(Token = "0x17000235")]
IComponent RootComponent
{
[Token(Token = "0x6000C2A")]
[Address(Slot = "0")]
get;
}
/// <summary>Gets the designer instance that contains the specified component.</summary>
/// <param name="component">The <see cref="T:System.ComponentModel.IComponent" /> to retrieve the designer for.</param>
/// <returns>An <see cref="T:System.ComponentModel.Design.IDesigner" />, or <see langword="null" /> if there is no designer for the specified component.</returns>
// Token: 0x06000C2B RID: 3115
[Token(Token = "0x6000C2B")]
[Address(Slot = "1")]
IDesigner GetDesigner(IComponent component);
}
}
@@ -0,0 +1,27 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides a basic, component site-specific, key-value pair dictionary through a service that a designer can use to store user-defined data.</summary>
// Token: 0x020001C3 RID: 451
[Token(Token = "0x20001C3")]
public interface IDictionaryService
{
/// <summary>Gets the value corresponding to the specified key.</summary>
/// <param name="key">The key to look up the value for.</param>
/// <returns>The associated value, or <see langword="null" /> if no value exists.</returns>
// Token: 0x06000C2C RID: 3116
[Token(Token = "0x6000C2C")]
[Address(Slot = "0")]
object GetValue(object key);
/// <summary>Sets the specified key-value pair.</summary>
/// <param name="key">An object to use as the key to associate the value with.</param>
/// <param name="value">The value to store.</param>
// Token: 0x06000C2D RID: 3117
[Token(Token = "0x6000C2D")]
[Address(Slot = "1")]
void SetValue(object key, object value);
}
}
@@ -0,0 +1,18 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides an interface that can list extender providers.</summary>
// Token: 0x020001C4 RID: 452
[Token(Token = "0x20001C4")]
public interface IExtenderListService
{
/// <summary>Gets the set of extender providers for the component.</summary>
/// <returns>An array of type <see cref="T:System.ComponentModel.IExtenderProvider" /> that lists the active extender providers. If there are no providers, an empty array is returned.</returns>
// Token: 0x06000C2E RID: 3118
[Token(Token = "0x6000C2E")]
[Address(Slot = "0")]
IExtenderProvider[] GetExtenderProviders();
}
}
@@ -0,0 +1,35 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides an interface for obtaining references to objects within a project by name or type, obtaining the name of a specified object, and for locating the parent of a specified object within a designer project.</summary>
// Token: 0x020001C5 RID: 453
[Token(Token = "0x20001C5")]
public interface IReferenceService
{
/// <summary>Gets a reference to the component whose name matches the specified name.</summary>
/// <param name="name">The name of the component to return a reference to.</param>
/// <returns>An object the specified name refers to, or <see langword="null" /> if no reference is found.</returns>
// Token: 0x06000C2F RID: 3119
[Token(Token = "0x6000C2F")]
[Address(Slot = "0")]
object GetReference(string name);
/// <summary>Gets the name of the specified component.</summary>
/// <param name="reference">The object to return the name of.</param>
/// <returns>The name of the object referenced, or <see langword="null" /> if the object reference is not valid.</returns>
// Token: 0x06000C30 RID: 3120
[Token(Token = "0x6000C30")]
[Address(Slot = "1")]
string GetName(object reference);
/// <summary>Gets all available references to components of the specified type.</summary>
/// <param name="baseType">The type of object to return references to instances of.</param>
/// <returns>An array of all available objects of the specified type.</returns>
// Token: 0x06000C31 RID: 3121
[Token(Token = "0x6000C31")]
[Address(Slot = "2")]
object[] GetReferences(Type baseType);
}
}
@@ -0,0 +1,14 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides support for root-level designer view technologies.</summary>
// Token: 0x020001C6 RID: 454
[Token(Token = "0x20001C6")]
[ComVisible(true)]
public interface IRootDesigner : IDesigner, IDisposable
{
}
}
@@ -0,0 +1,42 @@
using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides an interface to modify the set of member descriptors for a component in design mode.</summary>
// Token: 0x020001C7 RID: 455
[Token(Token = "0x20001C7")]
public interface ITypeDescriptorFilterService
{
/// <summary>Filters the attributes that a component exposes through a <see cref="T:System.ComponentModel.TypeDescriptor" />.</summary>
/// <param name="component">The component to filter the attributes of.</param>
/// <param name="attributes">A dictionary of attributes that can be modified.</param>
/// <returns>
/// <see langword="true" /> if the set of filtered attributes is to be cached; <see langword="false" /> if the filter service must query again.</returns>
// Token: 0x06000C32 RID: 3122
[Token(Token = "0x6000C32")]
[Address(Slot = "0")]
bool FilterAttributes(IComponent component, IDictionary attributes);
/// <summary>Filters the events that a component exposes through a <see cref="T:System.ComponentModel.TypeDescriptor" />.</summary>
/// <param name="component">The component to filter events for.</param>
/// <param name="events">A dictionary of events that can be modified.</param>
/// <returns>
/// <see langword="true" /> if the set of filtered events is to be cached; <see langword="false" /> if the filter service must query again.</returns>
// Token: 0x06000C33 RID: 3123
[Token(Token = "0x6000C33")]
[Address(Slot = "1")]
bool FilterEvents(IComponent component, IDictionary events);
/// <summary>Filters the properties that a component exposes through a <see cref="T:System.ComponentModel.TypeDescriptor" />.</summary>
/// <param name="component">The component to filter properties for.</param>
/// <param name="properties">A dictionary of properties that can be modified.</param>
/// <returns>
/// <see langword="true" /> if the set of filtered properties is to be cached; <see langword="false" /> if the filter service must query again.</returns>
// Token: 0x06000C34 RID: 3124
[Token(Token = "0x6000C34")]
[Address(Slot = "2")]
bool FilterProperties(IComponent component, IDictionary properties);
}
}
@@ -0,0 +1,28 @@
using System;
using System.Reflection;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides an interface to retrieve an assembly or type by name.</summary>
// Token: 0x020001C8 RID: 456
[Token(Token = "0x20001C8")]
public interface ITypeResolutionService
{
/// <summary>Loads a type with the specified name.</summary>
/// <param name="name">The name of the type. If the type name is not a fully qualified name that indicates an assembly, this service will search its internal set of referenced assemblies.</param>
/// <returns>An instance of <see cref="T:System.Type" /> that corresponds to the specified name, or <see langword="null" /> if no type can be found.</returns>
// Token: 0x06000C35 RID: 3125
[Token(Token = "0x6000C35")]
[Address(Slot = "0")]
Type GetType(string name);
/// <summary>Gets the path to the file from which the assembly was loaded.</summary>
/// <param name="name">The name of the assembly.</param>
/// <returns>The path to the file from which the assembly was loaded.</returns>
// Token: 0x06000C36 RID: 3126
[Token(Token = "0x6000C36")]
[Address(Slot = "1")]
string GetPathOfAssembly(AssemblyName name);
}
}
@@ -0,0 +1,62 @@
using System;
using System.Collections;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
// Token: 0x020001BE RID: 446
[Token(Token = "0x20001BE")]
internal class RuntimeLicenseContext : LicenseContext
{
// Token: 0x06000C21 RID: 3105 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C21")]
[Address(RVA = "0x4FF360", Offset = "0x4FE160", VA = "0x1804FF360")]
private string GetLocalPath(string fileName)
{
return null;
}
// Token: 0x06000C22 RID: 3106 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C22")]
[Address(RVA = "0x4FF3E0", Offset = "0x4FE1E0", VA = "0x1804FF3E0", Slot = "6")]
public override string GetSavedLicenseKey(Type type, Assembly resourceAssembly)
{
return null;
}
// Token: 0x06000C23 RID: 3107 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C23")]
[Address(RVA = "0x4FF180", Offset = "0x4FDF80", VA = "0x1804FF180")]
private Stream CaseInsensitiveManifestResourceStreamLookup(Assembly satellite, string name)
{
return null;
}
// Token: 0x06000C24 RID: 3108 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C24")]
[Address(RVA = "0x4FFBA0", Offset = "0x4FE9A0", VA = "0x1804FFBA0")]
private static Stream OpenRead(Uri resourceUri)
{
return null;
}
// Token: 0x06000C25 RID: 3109 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C25")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
public RuntimeLicenseContext()
{
}
// Token: 0x04000657 RID: 1623
[Token(Token = "0x4000657")]
private static TraceSwitch RuntimeLicenseContextSwitch;
// Token: 0x04000658 RID: 1624
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000658")]
internal Hashtable savedLicenseKeys;
}
}

Some files were not shown because too many files have changed in this diff Show More