86 lines
3.5 KiB
C#
86 lines
3.5 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Configuration
|
|
{
|
|
/// <summary>Represents a collection of <see cref="T:System.Configuration.SchemeSettingElement" /> objects.</summary>
|
|
// Token: 0x020003C9 RID: 969
|
|
[Token(Token = "0x20003C9")]
|
|
[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: 0x06001975 RID: 6517 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6001975")]
|
|
[Address(RVA = "0x2F46140", Offset = "0x2F45140", VA = "0x182F46140")]
|
|
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: 0x170005B9 RID: 1465
|
|
// (get) Token: 0x06001976 RID: 6518 RVA: 0x0000AC80 File Offset: 0x00008E80
|
|
[Token(Token = "0x170005B9")]
|
|
public override ConfigurationElementCollectionType CollectionType
|
|
{
|
|
[Token(Token = "0x6001976")]
|
|
[Address(RVA = "0x2F46170", Offset = "0x2F45170", VA = "0x182F46170", Slot = "13")]
|
|
get
|
|
{
|
|
return ConfigurationElementCollectionType.BasicMap;
|
|
}
|
|
}
|
|
|
|
// Token: 0x06001977 RID: 6519 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001977")]
|
|
[Address(RVA = "0x2F461D0", Offset = "0x2F451D0", VA = "0x182F461D0")]
|
|
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: 0x170005BA RID: 1466
|
|
[Token(Token = "0x170005BA")]
|
|
public SchemeSettingElement this[string name]
|
|
{
|
|
[Token(Token = "0x6001978")]
|
|
[Address(RVA = "0x2F461A0", Offset = "0x2F451A0", VA = "0x182F461A0")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x06001979 RID: 6521 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001979")]
|
|
[Address(RVA = "0x2F460B0", Offset = "0x2F450B0", VA = "0x182F460B0", Slot = "16")]
|
|
protected override ConfigurationElement CreateNewElement()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x0600197A RID: 6522 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600197A")]
|
|
[Address(RVA = "0x2F460E0", Offset = "0x2F450E0", VA = "0x182F460E0", 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: 0x0600197B RID: 6523 RVA: 0x0000AC98 File Offset: 0x00008E98
|
|
[Token(Token = "0x600197B")]
|
|
[Address(RVA = "0x2F46110", Offset = "0x2F45110", VA = "0x182F46110")]
|
|
public int IndexOf(SchemeSettingElement element)
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
}
|