48 lines
1.6 KiB
C#
48 lines
1.6 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Configuration
|
|
{
|
|
/// <summary>Represents a group of user-scoped application settings in a configuration file.</summary>
|
|
// Token: 0x020003B6 RID: 950
|
|
[Token(Token = "0x20003B6")]
|
|
public sealed class ClientSettingsSection : ConfigurationSection
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ClientSettingsSection" /> class.</summary>
|
|
// Token: 0x0600191F RID: 6431 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600191F")]
|
|
[Address(RVA = "0x2F39020", Offset = "0x2F38020", VA = "0x182F39020")]
|
|
public ClientSettingsSection()
|
|
{
|
|
}
|
|
|
|
// Token: 0x1700059D RID: 1437
|
|
// (get) Token: 0x06001920 RID: 6432 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x1700059D")]
|
|
protected override ConfigurationPropertyCollection Properties
|
|
{
|
|
[Token(Token = "0x6001920")]
|
|
[Address(RVA = "0x2F39050", Offset = "0x2F38050", VA = "0x182F39050", Slot = "4")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the collection of client settings for the section.</summary>
|
|
/// <returns>A <see cref="T:System.Configuration.SettingElementCollection" /> containing all the client settings found in the current configuration section.</returns>
|
|
// Token: 0x1700059E RID: 1438
|
|
// (get) Token: 0x06001921 RID: 6433 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x1700059E")]
|
|
public SettingElementCollection Settings
|
|
{
|
|
[Token(Token = "0x6001921")]
|
|
[Address(RVA = "0x2F39080", Offset = "0x2F38080", VA = "0x182F39080")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|