m
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Configuration.Provider;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Acts as a base class for deriving custom settings providers in the application settings architecture.</summary>
|
||||
// Token: 0x02000381 RID: 897
|
||||
[Token(Token = "0x2000381")]
|
||||
public abstract class SettingsProvider : ProviderBase
|
||||
{
|
||||
/// <summary>Initializes an instance of the <see cref="T:System.Configuration.SettingsProvider" /> class.</summary>
|
||||
// Token: 0x060017B3 RID: 6067 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017B3")]
|
||||
[Address(RVA = "0x2F47CD0", Offset = "0x2F46CD0", VA = "0x182F47CD0")]
|
||||
protected SettingsProvider()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the name of the currently running application.</summary>
|
||||
/// <returns>A <see cref="T:System.String" /> that contains the application's shortened name, which does not contain a full path or extension, for example, <c>SimpleAppSettings</c>.</returns>
|
||||
// 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;
|
||||
}
|
||||
|
||||
/// <summary>Returns the collection of settings property values for the specified application instance and settings property group.</summary>
|
||||
/// <param name="context">A <see cref="T:System.Configuration.SettingsContext" /> describing the current application use.</param>
|
||||
/// <param name="collection">A <see cref="T:System.Configuration.SettingsPropertyCollection" /> containing the settings property group whose values are to be retrieved.</param>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsPropertyValueCollection" /> containing the values for the specified settings property group.</returns>
|
||||
// Token: 0x060017B6 RID: 6070
|
||||
[Token(Token = "0x60017B6")]
|
||||
[Address(Slot = "7")]
|
||||
public abstract SettingsPropertyValueCollection GetPropertyValues(SettingsContext context, SettingsPropertyCollection collection);
|
||||
|
||||
/// <summary>Sets the values of the specified group of property settings.</summary>
|
||||
/// <param name="context">A <see cref="T:System.Configuration.SettingsContext" /> describing the current application usage.</param>
|
||||
/// <param name="collection">A <see cref="T:System.Configuration.SettingsPropertyValueCollection" /> representing the group of property settings to set.</param>
|
||||
// Token: 0x060017B7 RID: 6071
|
||||
[Token(Token = "0x60017B7")]
|
||||
[Address(Slot = "8")]
|
||||
public abstract void SetPropertyValues(SettingsContext context, SettingsPropertyValueCollection collection);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user