Files
niko 8fc35183db a
2026-04-11 22:19:20 +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: 0x02000383 RID: 899
[Token(Token = "0x2000383")]
public class SettingsPropertyCollection : ICollection, IEnumerable, ICloneable
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyCollection" /> class.</summary>
// Token: 0x060017A4 RID: 6052 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017A4")]
[Address(RVA = "0x28AC5F0", Offset = "0x28AB3F0", VA = "0x1828AC5F0")]
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: 0x17000505 RID: 1285
// (get) Token: 0x060017A5 RID: 6053 RVA: 0x0000A5F0 File Offset: 0x000087F0
[Token(Token = "0x17000505")]
public int Count
{
[Token(Token = "0x60017A5")]
[Address(RVA = "0x28AC620", Offset = "0x28AB420", VA = "0x1828AC620", 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: 0x17000506 RID: 1286
// (get) Token: 0x060017A6 RID: 6054 RVA: 0x0000A608 File Offset: 0x00008808
[Token(Token = "0x17000506")]
public bool IsSynchronized
{
[Token(Token = "0x60017A6")]
[Address(RVA = "0x28AC650", Offset = "0x28AB450", VA = "0x1828AC650", 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: 0x17000507 RID: 1287
[Token(Token = "0x17000507")]
public SettingsProperty this[string name]
{
[Token(Token = "0x60017A7")]
[Address(RVA = "0x28AC680", Offset = "0x28AB480", VA = "0x1828AC680")]
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: 0x17000508 RID: 1288
// (get) Token: 0x060017A8 RID: 6056 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000508")]
public object SyncRoot
{
[Token(Token = "0x60017A8")]
[Address(RVA = "0x28AC6B0", Offset = "0x28AB4B0", VA = "0x1828AC6B0", 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: 0x060017A9 RID: 6057 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017A9")]
[Address(RVA = "0x28AC380", Offset = "0x28AB180", VA = "0x1828AC380")]
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: 0x060017AA RID: 6058 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017AA")]
[Address(RVA = "0x28AC3B0", Offset = "0x28AB1B0", VA = "0x1828AC3B0")]
public void Clear()
{
}
/// <summary>Creates a copy of the existing collection.</summary>
/// <returns>A <see cref="T:System.Configuration.SettingsPropertyCollection" /> class.</returns>
// Token: 0x060017AB RID: 6059 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017AB")]
[Address(RVA = "0x28AC3E0", Offset = "0x28AB1E0", VA = "0x1828AC3E0", 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: 0x060017AC RID: 6060 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017AC")]
[Address(RVA = "0x28AC410", Offset = "0x28AB210", VA = "0x1828AC410", 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: 0x060017AD RID: 6061 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017AD")]
[Address(RVA = "0x28AC440", Offset = "0x28AB240", VA = "0x1828AC440", 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: 0x060017AE RID: 6062 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017AE")]
[Address(RVA = "0x28AC4A0", Offset = "0x28AB2A0", VA = "0x1828AC4A0", 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: 0x060017AF RID: 6063 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017AF")]
[Address(RVA = "0x28AC470", Offset = "0x28AB270", VA = "0x1828AC470", 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: 0x060017B0 RID: 6064 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017B0")]
[Address(RVA = "0x28AC500", Offset = "0x28AB300", VA = "0x1828AC500", 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: 0x060017B1 RID: 6065 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017B1")]
[Address(RVA = "0x28AC4D0", Offset = "0x28AB2D0", VA = "0x1828AC4D0", 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: 0x060017B2 RID: 6066 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017B2")]
[Address(RVA = "0x28AC560", Offset = "0x28AB360", VA = "0x1828AC560", 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: 0x060017B3 RID: 6067 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017B3")]
[Address(RVA = "0x28AC530", Offset = "0x28AB330", VA = "0x1828AC530", 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: 0x060017B4 RID: 6068 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017B4")]
[Address(RVA = "0x28AC590", Offset = "0x28AB390", VA = "0x1828AC590")]
public void Remove(string name)
{
}
/// <summary>Sets the collection to be read-only.</summary>
// Token: 0x060017B5 RID: 6069 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017B5")]
[Address(RVA = "0x28AC5C0", Offset = "0x28AB3C0", VA = "0x1828AC5C0")]
public void SetReadOnly()
{
}
}
}