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

343 lines
18 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Collections.Specialized
{
/// <summary>Represents a collection of strings.</summary>
// Token: 0x0200033D RID: 829
[Token(Token = "0x200033D")]
[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: 0x1700047F RID: 1151
[Token(Token = "0x1700047F")]
public string this[int index]
{
[Token(Token = "0x60015B4")]
[Address(RVA = "0xBA4AF0", Offset = "0xBA3AF0", VA = "0x180BA4AF0")]
get
{
return null;
}
[Token(Token = "0x60015B5")]
[Address(RVA = "0xBA4C60", Offset = "0xBA3C60", VA = "0x180BA4C60")]
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: 0x17000480 RID: 1152
// (get) Token: 0x060015B6 RID: 5558 RVA: 0x00009A08 File Offset: 0x00007C08
[Token(Token = "0x17000480")]
public int Count
{
[Token(Token = "0x60015B6")]
[Address(RVA = "0x478810", Offset = "0x477810", VA = "0x180478810", 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: 0x17000481 RID: 1153
// (get) Token: 0x060015B7 RID: 5559 RVA: 0x00009A20 File Offset: 0x00007C20
[Token(Token = "0x17000481")]
bool IList.IsReadOnly
{
[Token(Token = "0x60015B7")]
[Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", 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: 0x17000482 RID: 1154
// (get) Token: 0x060015B8 RID: 5560 RVA: 0x00009A38 File Offset: 0x00007C38
[Token(Token = "0x17000482")]
bool IList.IsFixedSize
{
[Token(Token = "0x60015B8")]
[Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", 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: 0x060015B9 RID: 5561 RVA: 0x00009A50 File Offset: 0x00007C50
[Token(Token = "0x60015B9")]
[Address(RVA = "0xBA4710", Offset = "0xBA3710", VA = "0x180BA4710")]
public int Add(string value)
{
return 0;
}
/// <summary>Removes all the strings from the <see cref="T:System.Collections.Specialized.StringCollection" />.</summary>
// Token: 0x060015BA RID: 5562 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015BA")]
[Address(RVA = "0x4DA930", Offset = "0x4D9930", VA = "0x1804DA930", 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: 0x060015BB RID: 5563 RVA: 0x00009A68 File Offset: 0x00007C68
[Token(Token = "0x60015BB")]
[Address(RVA = "0xBA4740", Offset = "0xBA3740", VA = "0x180BA4740")]
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: 0x060015BC RID: 5564 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015BC")]
[Address(RVA = "0xBA4770", Offset = "0xBA3770", VA = "0x180BA4770")]
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: 0x060015BD RID: 5565 RVA: 0x00009A80 File Offset: 0x00007C80
[Token(Token = "0x60015BD")]
[Address(RVA = "0xBA47A0", Offset = "0xBA37A0", VA = "0x180BA47A0")]
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: 0x060015BE RID: 5566 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015BE")]
[Address(RVA = "0xBA47D0", Offset = "0xBA37D0", VA = "0x180BA47D0")]
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: 0x17000483 RID: 1155
// (get) Token: 0x060015BF RID: 5567 RVA: 0x00009A98 File Offset: 0x00007C98
[Token(Token = "0x17000483")]
public bool IsSynchronized
{
[Token(Token = "0x60015BF")]
[Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", 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: 0x060015C0 RID: 5568 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015C0")]
[Address(RVA = "0xBA4800", Offset = "0xBA3800", VA = "0x180BA4800")]
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: 0x060015C1 RID: 5569 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015C1")]
[Address(RVA = "0x8AC2C0", Offset = "0x8AB2C0", VA = "0x1808AC2C0", 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: 0x17000484 RID: 1156
// (get) Token: 0x060015C2 RID: 5570 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000484")]
public object SyncRoot
{
[Token(Token = "0x60015C2")]
[Address(RVA = "0x8AC2F0", Offset = "0x8AB2F0", VA = "0x1808AC2F0", 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: 0x17000485 RID: 1157
[Token(Token = "0x17000485")]
object IList.this[int index]
{
[Token(Token = "0x60015C3")]
[Address(RVA = "0xBA4AF0", Offset = "0xBA3AF0", VA = "0x180BA4AF0", Slot = "4")]
get
{
return null;
}
[Token(Token = "0x60015C4")]
[Address(RVA = "0xBA4B70", Offset = "0xBA3B70", VA = "0x180BA4B70", 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: 0x060015C5 RID: 5573 RVA: 0x00009AB0 File Offset: 0x00007CB0
[Token(Token = "0x60015C5")]
[Address(RVA = "0xBA4860", Offset = "0xBA3860", VA = "0x180BA4860", 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: 0x060015C6 RID: 5574 RVA: 0x00009AC8 File Offset: 0x00007CC8
[Token(Token = "0x60015C6")]
[Address(RVA = "0xBA48E0", Offset = "0xBA38E0", VA = "0x180BA48E0", 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: 0x060015C7 RID: 5575 RVA: 0x00009AE0 File Offset: 0x00007CE0
[Token(Token = "0x60015C7")]
[Address(RVA = "0xBA4960", Offset = "0xBA3960", VA = "0x180BA4960", 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: 0x060015C8 RID: 5576 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015C8")]
[Address(RVA = "0xBA49E0", Offset = "0xBA39E0", VA = "0x180BA49E0", 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: 0x060015C9 RID: 5577 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015C9")]
[Address(RVA = "0xBA4A70", Offset = "0xBA3A70", VA = "0x180BA4A70", 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: 0x060015CA RID: 5578 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015CA")]
[Address(RVA = "0xBA4770", Offset = "0xBA3770", VA = "0x180BA4770", 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: 0x060015CB RID: 5579 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60015CB")]
[Address(RVA = "0xBA4830", Offset = "0xBA3830", VA = "0x180BA4830", Slot = "19")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Specialized.StringCollection" /> class.</summary>
// Token: 0x060015CC RID: 5580 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60015CC")]
[Address(RVA = "0xBA4C00", Offset = "0xBA3C00", VA = "0x180BA4C00")]
public StringCollection()
{
}
// Token: 0x04000E37 RID: 3639
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000E37")]
private ArrayList data;
}
}