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

201 lines
9.0 KiB
C#

using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Contains a collection of <see cref="T:System.Configuration.SettingsProperty" /> objects.</summary>
// Token: 0x0200037F RID: 895
[Token(Token = "0x200037F")]
public class SettingsPropertyCollection : ICollection, IEnumerable, ICloneable
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyCollection" /> class.</summary>
// Token: 0x0600178D RID: 6029 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600178D")]
[Address(RVA = "0x2F470A0", Offset = "0x2F460A0", VA = "0x182F470A0")]
public SettingsPropertyCollection()
{
}
/// <summary>Gets a value that specifies the number of <see cref="T:System.Configuration.SettingsProperty" /> objects in the collection.</summary>
/// <returns>The number of <see cref="T:System.Configuration.SettingsProperty" /> objects in the collection.</returns>
// Token: 0x17000501 RID: 1281
// (get) Token: 0x0600178E RID: 6030 RVA: 0x0000A5D8 File Offset: 0x000087D8
[Token(Token = "0x17000501")]
public int Count
{
[Token(Token = "0x600178E")]
[Address(RVA = "0x2F470D0", Offset = "0x2F460D0", VA = "0x182F470D0", Slot = "5")]
get
{
return 0;
}
}
/// <summary>Gets a value that indicates whether access to the collection is synchronized (thread safe).</summary>
/// <returns>
/// <see langword="true" /> if access to the <see cref="T:System.Configuration.SettingsPropertyCollection" /> is synchronized; otherwise, <see langword="false" />.</returns>
// Token: 0x17000502 RID: 1282
// (get) Token: 0x0600178F RID: 6031 RVA: 0x0000A5F0 File Offset: 0x000087F0
[Token(Token = "0x17000502")]
public bool IsSynchronized
{
[Token(Token = "0x600178F")]
[Address(RVA = "0x2F47100", Offset = "0x2F46100", VA = "0x182F47100", Slot = "7")]
get
{
return default(bool);
}
}
/// <summary>Gets the collection item with the specified name.</summary>
/// <param name="name">The name of the <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
/// <returns>The <see cref="T:System.Configuration.SettingsProperty" /> object with the specified <paramref name="name" />.</returns>
// Token: 0x17000503 RID: 1283
[Token(Token = "0x17000503")]
public SettingsProperty this[string name]
{
[Token(Token = "0x6001790")]
[Address(RVA = "0x2F47130", Offset = "0x2F46130", VA = "0x182F47130")]
get
{
return null;
}
}
/// <summary>Gets the object to synchronize access to the collection.</summary>
/// <returns>The object to synchronize access to the collection.</returns>
// Token: 0x17000504 RID: 1284
// (get) Token: 0x06001791 RID: 6033 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000504")]
public object SyncRoot
{
[Token(Token = "0x6001791")]
[Address(RVA = "0x2F47160", Offset = "0x2F46160", VA = "0x182F47160", Slot = "6")]
get
{
return null;
}
}
/// <summary>Adds a <see cref="T:System.Configuration.SettingsProperty" /> object to the collection.</summary>
/// <param name="property">A <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
// Token: 0x06001792 RID: 6034 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001792")]
[Address(RVA = "0x2F46E30", Offset = "0x2F45E30", VA = "0x182F46E30")]
public void Add(SettingsProperty property)
{
}
/// <summary>Removes all <see cref="T:System.Configuration.SettingsProperty" /> objects from the collection.</summary>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
// Token: 0x06001793 RID: 6035 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001793")]
[Address(RVA = "0x2F46E60", Offset = "0x2F45E60", VA = "0x182F46E60")]
public void Clear()
{
}
/// <summary>Creates a copy of the existing collection.</summary>
/// <returns>A <see cref="T:System.Configuration.SettingsPropertyCollection" /> class.</returns>
// Token: 0x06001794 RID: 6036 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001794")]
[Address(RVA = "0x2F46E90", Offset = "0x2F45E90", VA = "0x182F46E90", Slot = "9")]
public object Clone()
{
return null;
}
/// <summary>Copies this <see cref="T:System.Configuration.SettingsPropertyCollection" /> object to an array.</summary>
/// <param name="array">The array to copy the object to.</param>
/// <param name="index">The index at which to begin copying.</param>
// Token: 0x06001795 RID: 6037 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001795")]
[Address(RVA = "0x2F46EC0", Offset = "0x2F45EC0", VA = "0x182F46EC0", Slot = "4")]
public void CopyTo(Array array, int index)
{
}
/// <summary>Gets the <see cref="T:System.Collections.IEnumerator" /> object as it applies to the collection.</summary>
/// <returns>The <see cref="T:System.Collections.IEnumerator" /> object as it applies to the collection.</returns>
// Token: 0x06001796 RID: 6038 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001796")]
[Address(RVA = "0x2F46EF0", Offset = "0x2F45EF0", VA = "0x182F46EF0", Slot = "8")]
public IEnumerator GetEnumerator()
{
return null;
}
/// <summary>Performs additional, custom processing when adding to the contents of the <see cref="T:System.Configuration.SettingsPropertyCollection" /> instance.</summary>
/// <param name="property">A <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
// Token: 0x06001797 RID: 6039 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001797")]
[Address(RVA = "0x2F46F50", Offset = "0x2F45F50", VA = "0x182F46F50", Slot = "10")]
protected virtual void OnAdd(SettingsProperty property)
{
}
/// <summary>Performs additional, custom processing after adding to the contents of the <see cref="T:System.Configuration.SettingsPropertyCollection" /> instance.</summary>
/// <param name="property">A <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
// Token: 0x06001798 RID: 6040 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001798")]
[Address(RVA = "0x2F46F20", Offset = "0x2F45F20", VA = "0x182F46F20", Slot = "11")]
protected virtual void OnAddComplete(SettingsProperty property)
{
}
/// <summary>Performs additional, custom processing when clearing the contents of the <see cref="T:System.Configuration.SettingsPropertyCollection" /> instance.</summary>
// Token: 0x06001799 RID: 6041 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001799")]
[Address(RVA = "0x2F46FB0", Offset = "0x2F45FB0", VA = "0x182F46FB0", Slot = "12")]
protected virtual void OnClear()
{
}
/// <summary>Performs additional, custom processing after clearing the contents of the <see cref="T:System.Configuration.SettingsPropertyCollection" /> instance.</summary>
// Token: 0x0600179A RID: 6042 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600179A")]
[Address(RVA = "0x2F46F80", Offset = "0x2F45F80", VA = "0x182F46F80", Slot = "13")]
protected virtual void OnClearComplete()
{
}
/// <summary>Performs additional, custom processing when removing the contents of the <see cref="T:System.Configuration.SettingsPropertyCollection" /> instance.</summary>
/// <param name="property">A <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
// Token: 0x0600179B RID: 6043 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600179B")]
[Address(RVA = "0x2F47010", Offset = "0x2F46010", VA = "0x182F47010", Slot = "14")]
protected virtual void OnRemove(SettingsProperty property)
{
}
/// <summary>Performs additional, custom processing after removing the contents of the <see cref="T:System.Configuration.SettingsPropertyCollection" /> instance.</summary>
/// <param name="property">A <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
// Token: 0x0600179C RID: 6044 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600179C")]
[Address(RVA = "0x2F46FE0", Offset = "0x2F45FE0", VA = "0x182F46FE0", Slot = "15")]
protected virtual void OnRemoveComplete(SettingsProperty property)
{
}
/// <summary>Removes a <see cref="T:System.Configuration.SettingsProperty" /> object from the collection.</summary>
/// <param name="name">The name of the <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
// Token: 0x0600179D RID: 6045 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600179D")]
[Address(RVA = "0x2F47040", Offset = "0x2F46040", VA = "0x182F47040")]
public void Remove(string name)
{
}
/// <summary>Sets the collection to be read-only.</summary>
// Token: 0x0600179E RID: 6046 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600179E")]
[Address(RVA = "0x2F47070", Offset = "0x2F46070", VA = "0x182F47070")]
public void SetReadOnly()
{
}
}
}