oh dear
This commit is contained in:
@@ -0,0 +1,85 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Represents a collection of <see cref="T:System.Configuration.SchemeSettingElement" /> objects.</summary>
|
||||
// Token: 0x020003CD RID: 973
|
||||
[Token(Token = "0x20003CD")]
|
||||
[ConfigurationCollection(typeof(SchemeSettingElement), CollectionType = 1, AddItemName = "add", ClearItemsName = "clear", RemoveItemName = "remove")]
|
||||
public sealed class SchemeSettingElementCollection : ConfigurationElementCollection
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SchemeSettingElementCollection" /> class.</summary>
|
||||
// Token: 0x0600198C RID: 6540 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600198C")]
|
||||
[Address(RVA = "0x28AB690", Offset = "0x28AA490", VA = "0x1828AB690")]
|
||||
public SchemeSettingElementCollection()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the default collection type of <see cref="T:System.Configuration.SchemeSettingElementCollection" />.</summary>
|
||||
/// <returns>The default collection type of <see cref="T:System.Configuration.SchemeSettingElementCollection" />.</returns>
|
||||
// Token: 0x170005BD RID: 1469
|
||||
// (get) Token: 0x0600198D RID: 6541 RVA: 0x0000AC98 File Offset: 0x00008E98
|
||||
[Token(Token = "0x170005BD")]
|
||||
public override ConfigurationElementCollectionType CollectionType
|
||||
{
|
||||
[Token(Token = "0x600198D")]
|
||||
[Address(RVA = "0x28AB6C0", Offset = "0x28AA4C0", VA = "0x1828AB6C0", Slot = "13")]
|
||||
get
|
||||
{
|
||||
return ConfigurationElementCollectionType.BasicMap;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600198E RID: 6542 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600198E")]
|
||||
[Address(RVA = "0x28AB720", Offset = "0x28AA520", VA = "0x1828AB720")]
|
||||
public SchemeSettingElement get_Item(int index)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Gets an item from the <see cref="T:System.Configuration.SchemeSettingElementCollection" /> collection.</summary>
|
||||
/// <param name="name">A string reference to the <see cref="T:System.Configuration.SchemeSettingElement" /> object within the collection.</param>
|
||||
/// <returns>A <see cref="T:System.Configuration.SchemeSettingElement" /> object contained in the collection.</returns>
|
||||
// Token: 0x170005BE RID: 1470
|
||||
[Token(Token = "0x170005BE")]
|
||||
public SchemeSettingElement this[string name]
|
||||
{
|
||||
[Token(Token = "0x600198F")]
|
||||
[Address(RVA = "0x28AB6F0", Offset = "0x28AA4F0", VA = "0x1828AB6F0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06001990 RID: 6544 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001990")]
|
||||
[Address(RVA = "0x28AB600", Offset = "0x28AA400", VA = "0x1828AB600", Slot = "16")]
|
||||
protected override ConfigurationElement CreateNewElement()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06001991 RID: 6545 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001991")]
|
||||
[Address(RVA = "0x28AB630", Offset = "0x28AA430", VA = "0x1828AB630", Slot = "17")]
|
||||
protected override object GetElementKey(ConfigurationElement element)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>The index of the specified <see cref="T:System.Configuration.SchemeSettingElement" />.</summary>
|
||||
/// <param name="element">The <see cref="T:System.Configuration.SchemeSettingElement" /> for the specified index location.</param>
|
||||
/// <returns>The index of the specified <see cref="T:System.Configuration.SchemeSettingElement" />; otherwise, -1.</returns>
|
||||
// Token: 0x06001992 RID: 6546 RVA: 0x0000ACB0 File Offset: 0x00008EB0
|
||||
[Token(Token = "0x6001992")]
|
||||
[Address(RVA = "0x28AB660", Offset = "0x28AA460", VA = "0x1828AB660")]
|
||||
public int IndexOf(SchemeSettingElement element)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user