m
This commit is contained in:
@@ -0,0 +1,147 @@
|
||||
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: 0x02000382 RID: 898
|
||||
[Token(Token = "0x2000382")]
|
||||
public class SettingsPropertyValueCollection : ICollection, IEnumerable, ICloneable
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyValueCollection" /> class.</summary>
|
||||
// Token: 0x060017B8 RID: 6072 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017B8")]
|
||||
[Address(RVA = "0x2F47460", Offset = "0x2F46460", VA = "0x182F47460")]
|
||||
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: 0x1700050F RID: 1295
|
||||
// (get) Token: 0x060017B9 RID: 6073 RVA: 0x0000A668 File Offset: 0x00008868
|
||||
[Token(Token = "0x1700050F")]
|
||||
public int Count
|
||||
{
|
||||
[Token(Token = "0x60017B9")]
|
||||
[Address(RVA = "0x2F47490", Offset = "0x2F46490", VA = "0x182F47490", 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: 0x17000510 RID: 1296
|
||||
// (get) Token: 0x060017BA RID: 6074 RVA: 0x0000A680 File Offset: 0x00008880
|
||||
[Token(Token = "0x17000510")]
|
||||
public bool IsSynchronized
|
||||
{
|
||||
[Token(Token = "0x60017BA")]
|
||||
[Address(RVA = "0x2F474C0", Offset = "0x2F464C0", VA = "0x182F474C0", 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: 0x17000511 RID: 1297
|
||||
[Token(Token = "0x17000511")]
|
||||
public SettingsPropertyValue this[string name]
|
||||
{
|
||||
[Token(Token = "0x60017BB")]
|
||||
[Address(RVA = "0x2F474F0", Offset = "0x2F464F0", VA = "0x182F474F0")]
|
||||
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: 0x17000512 RID: 1298
|
||||
// (get) Token: 0x060017BC RID: 6076 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000512")]
|
||||
public object SyncRoot
|
||||
{
|
||||
[Token(Token = "0x60017BC")]
|
||||
[Address(RVA = "0x2F47520", Offset = "0x2F46520", VA = "0x182F47520", 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: 0x060017BD RID: 6077 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017BD")]
|
||||
[Address(RVA = "0x2F47310", Offset = "0x2F46310", VA = "0x182F47310")]
|
||||
public void Add(SettingsPropertyValue property)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Removes all <see cref="T:System.Configuration.SettingsPropertyValue" /> objects from the collection.</summary>
|
||||
// Token: 0x060017BE RID: 6078 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017BE")]
|
||||
[Address(RVA = "0x2F47340", Offset = "0x2F46340", VA = "0x182F47340")]
|
||||
public void Clear()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Creates a copy of the existing collection.</summary>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsPropertyValueCollection" /> class.</returns>
|
||||
// Token: 0x060017BF RID: 6079 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60017BF")]
|
||||
[Address(RVA = "0x2F47370", Offset = "0x2F46370", VA = "0x182F47370", 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: 0x060017C0 RID: 6080 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017C0")]
|
||||
[Address(RVA = "0x2F473A0", Offset = "0x2F463A0", VA = "0x182F473A0", 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: 0x060017C1 RID: 6081 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60017C1")]
|
||||
[Address(RVA = "0x2F473D0", Offset = "0x2F463D0", VA = "0x182F473D0", 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: 0x060017C2 RID: 6082 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017C2")]
|
||||
[Address(RVA = "0x2F47400", Offset = "0x2F46400", VA = "0x182F47400")]
|
||||
public void Remove(string name)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Sets the collection to be read-only.</summary>
|
||||
// Token: 0x060017C3 RID: 6083 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017C3")]
|
||||
[Address(RVA = "0x2F47430", Offset = "0x2F46430", VA = "0x182F47430")]
|
||||
public void SetReadOnly()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user