Files
Aug2021-Cpp2IL-Dump/System/Configuration/SettingsPropertyValueCollection.cs
2026-04-10 22:50:51 +02:00

148 lines
6.3 KiB
C#

using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Contains a collection of settings property values that map <see cref="T:System.Configuration.SettingsProperty" /> objects to <see cref="T:System.Configuration.SettingsPropertyValue" /> objects.</summary>
// Token: 0x02000386 RID: 902
[Token(Token = "0x2000386")]
public class SettingsPropertyValueCollection : ICollection, IEnumerable, ICloneable
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyValueCollection" /> class.</summary>
// Token: 0x060017CF RID: 6095 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017CF")]
[Address(RVA = "0x28AC9B0", Offset = "0x28AB7B0", VA = "0x1828AC9B0")]
public SettingsPropertyValueCollection()
{
}
/// <summary>Gets a value that specifies the number of <see cref="T:System.Configuration.SettingsPropertyValue" /> objects in the collection.</summary>
/// <returns>The number of <see cref="T:System.Configuration.SettingsPropertyValue" /> objects in the collection.</returns>
// Token: 0x17000513 RID: 1299
// (get) Token: 0x060017D0 RID: 6096 RVA: 0x0000A680 File Offset: 0x00008880
[Token(Token = "0x17000513")]
public int Count
{
[Token(Token = "0x60017D0")]
[Address(RVA = "0x28AC9E0", Offset = "0x28AB7E0", VA = "0x1828AC9E0", 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.SettingsPropertyValueCollection" /> collection is synchronized; otherwise, <see langword="false" />.</returns>
// Token: 0x17000514 RID: 1300
// (get) Token: 0x060017D1 RID: 6097 RVA: 0x0000A698 File Offset: 0x00008898
[Token(Token = "0x17000514")]
public bool IsSynchronized
{
[Token(Token = "0x60017D1")]
[Address(RVA = "0x28ACA10", Offset = "0x28AB810", VA = "0x1828ACA10", Slot = "7")]
get
{
return default(bool);
}
}
/// <summary>Gets an item from the collection.</summary>
/// <param name="name">A <see cref="T:System.Configuration.SettingsPropertyValue" /> object.</param>
/// <returns>The <see cref="T:System.Configuration.SettingsPropertyValue" /> object with the specified <paramref name="name" />.</returns>
// Token: 0x17000515 RID: 1301
[Token(Token = "0x17000515")]
public SettingsPropertyValue this[string name]
{
[Token(Token = "0x60017D2")]
[Address(RVA = "0x28ACA40", Offset = "0x28AB840", VA = "0x1828ACA40")]
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: 0x17000516 RID: 1302
// (get) Token: 0x060017D3 RID: 6099 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000516")]
public object SyncRoot
{
[Token(Token = "0x60017D3")]
[Address(RVA = "0x28ACA70", Offset = "0x28AB870", VA = "0x1828ACA70", Slot = "6")]
get
{
return null;
}
}
/// <summary>Adds a <see cref="T:System.Configuration.SettingsPropertyValue" /> object to the collection.</summary>
/// <param name="property">A <see cref="T:System.Configuration.SettingsPropertyValue" /> object.</param>
/// <exception cref="T:System.NotSupportedException">An attempt was made to add an item to the collection, but the collection was marked as read-only.</exception>
// Token: 0x060017D4 RID: 6100 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017D4")]
[Address(RVA = "0x28AC860", Offset = "0x28AB660", VA = "0x1828AC860")]
public void Add(SettingsPropertyValue property)
{
}
/// <summary>Removes all <see cref="T:System.Configuration.SettingsPropertyValue" /> objects from the collection.</summary>
// Token: 0x060017D5 RID: 6101 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017D5")]
[Address(RVA = "0x28AC890", Offset = "0x28AB690", VA = "0x1828AC890")]
public void Clear()
{
}
/// <summary>Creates a copy of the existing collection.</summary>
/// <returns>A <see cref="T:System.Configuration.SettingsPropertyValueCollection" /> class.</returns>
// Token: 0x060017D6 RID: 6102 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017D6")]
[Address(RVA = "0x28AC8C0", Offset = "0x28AB6C0", VA = "0x1828AC8C0", Slot = "9")]
public object Clone()
{
return null;
}
/// <summary>Copies this <see cref="T:System.Configuration.SettingsPropertyValueCollection" /> collection to an array.</summary>
/// <param name="array">The array to copy the collection to.</param>
/// <param name="index">The index at which to begin copying.</param>
// Token: 0x060017D7 RID: 6103 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017D7")]
[Address(RVA = "0x28AC8F0", Offset = "0x28AB6F0", VA = "0x1828AC8F0", 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: 0x060017D8 RID: 6104 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017D8")]
[Address(RVA = "0x28AC920", Offset = "0x28AB720", VA = "0x1828AC920", Slot = "8")]
public IEnumerator GetEnumerator()
{
return null;
}
/// <summary>Removes a <see cref="T:System.Configuration.SettingsPropertyValue" /> object from the collection.</summary>
/// <param name="name">The name of the <see cref="T:System.Configuration.SettingsPropertyValue" /> object.</param>
/// <exception cref="T:System.NotSupportedException">An attempt was made to remove an item from the collection, but the collection was marked as read-only.</exception>
// Token: 0x060017D9 RID: 6105 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017D9")]
[Address(RVA = "0x28AC950", Offset = "0x28AB750", VA = "0x1828AC950")]
public void Remove(string name)
{
}
/// <summary>Sets the collection to be read-only.</summary>
// Token: 0x060017DA RID: 6106 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017DA")]
[Address(RVA = "0x28AC980", Offset = "0x28AB780", VA = "0x1828AC980")]
public void SetReadOnly()
{
}
}
}