Files
2026-04-10 22:50:51 +02:00

343 lines
18 KiB
C#

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;
}
}