using System;
using System.Configuration.Provider;
using Cpp2IlInjected;
namespace System.Configuration
{
/// Acts as a base class for deriving custom settings providers in the application settings architecture.
// Token: 0x02000381 RID: 897
[Token(Token = "0x2000381")]
public abstract class SettingsProvider : ProviderBase
{
/// Initializes an instance of the class.
// Token: 0x060017B3 RID: 6067 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017B3")]
[Address(RVA = "0x2F47CD0", Offset = "0x2F46CD0", VA = "0x182F47CD0")]
protected SettingsProvider()
{
}
/// Gets or sets the name of the currently running application.
/// A that contains the application's shortened name, which does not contain a full path or extension, for example, SimpleAppSettings.
// Token: 0x1700050E RID: 1294
// (get) Token: 0x060017B4 RID: 6068
// (set) Token: 0x060017B5 RID: 6069
[Token(Token = "0x1700050E")]
public abstract string ApplicationName
{
[Token(Token = "0x60017B4")]
[Address(Slot = "5")]
get;
[Token(Token = "0x60017B5")]
[Address(Slot = "6")]
set;
}
/// Returns the collection of settings property values for the specified application instance and settings property group.
/// A describing the current application use.
/// A containing the settings property group whose values are to be retrieved.
/// A containing the values for the specified settings property group.
// Token: 0x060017B6 RID: 6070
[Token(Token = "0x60017B6")]
[Address(Slot = "7")]
public abstract SettingsPropertyValueCollection GetPropertyValues(SettingsContext context, SettingsPropertyCollection collection);
/// Sets the values of the specified group of property settings.
/// A describing the current application usage.
/// A representing the group of property settings to set.
// Token: 0x060017B7 RID: 6071
[Token(Token = "0x60017B7")]
[Address(Slot = "8")]
public abstract void SetPropertyValues(SettingsContext context, SettingsPropertyValueCollection collection);
}
}