oh dear
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides a method for reading values of a particular type from the configuration.</summary>
|
||||
// Token: 0x020003B9 RID: 953
|
||||
[Token(Token = "0x20003B9")]
|
||||
public class AppSettingsReader
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.AppSettingsReader" /> class.</summary>
|
||||
// Token: 0x06001934 RID: 6452 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001934")]
|
||||
[Address(RVA = "0x289D960", Offset = "0x289C760", VA = "0x18289D960")]
|
||||
public AppSettingsReader()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the value for a specified key from the <see cref="P:System.Configuration.ConfigurationSettings.AppSettings" /> property and returns an object of the specified type containing the value from the configuration.</summary>
|
||||
/// <param name="key">The key for which to get the value.</param>
|
||||
/// <param name="type">The type of the object to return.</param>
|
||||
/// <returns>The value of the specified key.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="key" /> is <see langword="null" />.
|
||||
/// -or-
|
||||
/// <paramref name="type" /> is <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.InvalidOperationException">
|
||||
/// <paramref name="key" /> does not exist in the <see langword="<appSettings>" /> configuration section.
|
||||
/// -or-
|
||||
/// The value in the <see langword="<appSettings>" /> configuration section for <paramref name="key" /> is not of type <paramref name="type" />.</exception>
|
||||
// Token: 0x06001935 RID: 6453 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001935")]
|
||||
[Address(RVA = "0x289D930", Offset = "0x289C730", VA = "0x18289D930")]
|
||||
public object GetValue(string key, Type type)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Specifies that an application settings property has a common value for all users of an application. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003B0 RID: 944
|
||||
[Token(Token = "0x20003B0")]
|
||||
[AttributeUsage(AttributeTargets.Property)]
|
||||
public sealed class ApplicationScopedSettingAttribute : SettingAttribute
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ApplicationScopedSettingAttribute" /> class.</summary>
|
||||
// Token: 0x06001901 RID: 6401 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001901")]
|
||||
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
|
||||
public ApplicationScopedSettingAttribute()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,320 @@
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Acts as a base class for deriving concrete wrapper classes to implement the application settings feature in Window Forms applications.</summary>
|
||||
// Token: 0x020003B2 RID: 946
|
||||
[Token(Token = "0x20003B2")]
|
||||
public abstract class ApplicationSettingsBase : SettingsBase, INotifyPropertyChanged
|
||||
{
|
||||
/// <summary>Initializes an instance of the <see cref="T:System.Configuration.ApplicationSettingsBase" /> class to its default state.</summary>
|
||||
// Token: 0x06001903 RID: 6403 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001903")]
|
||||
[Address(RVA = "0x289DB40", Offset = "0x289C940", VA = "0x18289DB40")]
|
||||
protected ApplicationSettingsBase()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes an instance of the <see cref="T:System.Configuration.ApplicationSettingsBase" /> class using the supplied owner component.</summary>
|
||||
/// <param name="owner">The component that will act as the owner of the application settings object.</param>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="owner" /> is <see langword="null" />.</exception>
|
||||
// Token: 0x06001904 RID: 6404 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001904")]
|
||||
[Address(RVA = "0x289DBD0", Offset = "0x289C9D0", VA = "0x18289DBD0")]
|
||||
protected ApplicationSettingsBase(IComponent owner)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes an instance of the <see cref="T:System.Configuration.ApplicationSettingsBase" /> class using the supplied owner component and settings key.</summary>
|
||||
/// <param name="owner">The component that will act as the owner of the application settings object.</param>
|
||||
/// <param name="settingsKey">A <see cref="T:System.String" /> that uniquely identifies separate instances of the wrapper class.</param>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="owner" /> is <see langword="null" />.</exception>
|
||||
// Token: 0x06001905 RID: 6405 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001905")]
|
||||
[Address(RVA = "0x289DBA0", Offset = "0x289C9A0", VA = "0x18289DBA0")]
|
||||
protected ApplicationSettingsBase(IComponent owner, string settingsKey)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes an instance of the <see cref="T:System.Configuration.ApplicationSettingsBase" /> class using the supplied settings key.</summary>
|
||||
/// <param name="settingsKey">A <see cref="T:System.String" /> that uniquely identifies separate instances of the wrapper class.</param>
|
||||
// Token: 0x06001906 RID: 6406 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001906")]
|
||||
[Address(RVA = "0x289DB70", Offset = "0x289C970", VA = "0x18289DB70")]
|
||||
protected ApplicationSettingsBase(string settingsKey)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the application settings context associated with the settings group.</summary>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsContext" /> associated with the settings group.</returns>
|
||||
// Token: 0x17000596 RID: 1430
|
||||
// (get) Token: 0x06001907 RID: 6407 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000596")]
|
||||
public override SettingsContext Context
|
||||
{
|
||||
[Token(Token = "0x6001907")]
|
||||
[Address(RVA = "0x289DCC0", Offset = "0x289CAC0", VA = "0x18289DCC0", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the value of the specified application settings property.</summary>
|
||||
/// <param name="propertyName">A <see cref="T:System.String" /> containing the name of the property to access.</param>
|
||||
/// <returns>If found, the value of the named settings property; otherwise, <see langword="null" />.</returns>
|
||||
/// <exception cref="T:System.Configuration.SettingsPropertyNotFoundException">There are no properties associated with the current wrapper or the specified property could not be found.</exception>
|
||||
/// <exception cref="T:System.Configuration.SettingsPropertyIsReadOnlyException">An attempt was made to set a read-only property.</exception>
|
||||
/// <exception cref="T:System.Configuration.SettingsPropertyWrongTypeException">The value supplied is of a type incompatible with the settings property, during a set operation.</exception>
|
||||
/// <exception cref="T:System.Configuration.ConfigurationErrorsException">The configuration file could not be parsed.</exception>
|
||||
// Token: 0x17000597 RID: 1431
|
||||
[Token(Token = "0x17000597")]
|
||||
public override object this[string propertyName]
|
||||
{
|
||||
[Token(Token = "0x6001908")]
|
||||
[Address(RVA = "0x289DCF0", Offset = "0x289CAF0", VA = "0x18289DCF0", Slot = "5")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6001909")]
|
||||
[Address(RVA = "0x289DEA0", Offset = "0x289CCA0", VA = "0x18289DEA0", Slot = "6")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the collection of settings properties in the wrapper.</summary>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsPropertyCollection" /> containing all the <see cref="T:System.Configuration.SettingsProperty" /> objects used in the current wrapper.</returns>
|
||||
/// <exception cref="T:System.Configuration.ConfigurationErrorsException">The associated settings provider could not be found or its instantiation failed.</exception>
|
||||
// Token: 0x17000598 RID: 1432
|
||||
// (get) Token: 0x0600190A RID: 6410 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000598")]
|
||||
public override SettingsPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x600190A")]
|
||||
[Address(RVA = "0x289DD20", Offset = "0x289CB20", VA = "0x18289DD20", Slot = "7")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets a collection of property values.</summary>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsPropertyValueCollection" /> of property values.</returns>
|
||||
// Token: 0x17000599 RID: 1433
|
||||
// (get) Token: 0x0600190B RID: 6411 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000599")]
|
||||
public override SettingsPropertyValueCollection PropertyValues
|
||||
{
|
||||
[Token(Token = "0x600190B")]
|
||||
[Address(RVA = "0x289DD50", Offset = "0x289CB50", VA = "0x18289DD50", Slot = "8")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the collection of application settings providers used by the wrapper.</summary>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsProviderCollection" /> containing all the <see cref="T:System.Configuration.SettingsProvider" /> objects used by the settings properties of the current settings wrapper.</returns>
|
||||
// Token: 0x1700059A RID: 1434
|
||||
// (get) Token: 0x0600190C RID: 6412 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700059A")]
|
||||
public override SettingsProviderCollection Providers
|
||||
{
|
||||
[Token(Token = "0x600190C")]
|
||||
[Address(RVA = "0x289DD80", Offset = "0x289CB80", VA = "0x18289DD80", Slot = "9")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the settings key for the application settings group.</summary>
|
||||
/// <returns>A <see cref="T:System.String" /> containing the settings key for the current settings group.</returns>
|
||||
// Token: 0x1700059B RID: 1435
|
||||
// (get) Token: 0x0600190D RID: 6413 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x0600190E RID: 6414 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700059B")]
|
||||
public string SettingsKey
|
||||
{
|
||||
[Token(Token = "0x600190D")]
|
||||
[Address(RVA = "0x289DDB0", Offset = "0x289CBB0", VA = "0x18289DDB0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x600190E")]
|
||||
[Address(RVA = "0x289DED0", Offset = "0x289CCD0", VA = "0x18289DED0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Occurs after the value of an application settings property is changed.</summary>
|
||||
// Token: 0x14000012 RID: 18
|
||||
// (add) Token: 0x0600190F RID: 6415 RVA: 0x00002053 File Offset: 0x00000253
|
||||
// (remove) Token: 0x06001910 RID: 6416 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x14000012")]
|
||||
public event PropertyChangedEventHandler PropertyChanged
|
||||
{
|
||||
[Token(Token = "0x600190F")]
|
||||
[Address(RVA = "0x289DC00", Offset = "0x289CA00", VA = "0x18289DC00", Slot = "11")]
|
||||
add
|
||||
{
|
||||
}
|
||||
[Token(Token = "0x6001910")]
|
||||
[Address(RVA = "0x289DDE0", Offset = "0x289CBE0", VA = "0x18289DDE0", Slot = "12")]
|
||||
remove
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Occurs before the value of an application settings property is changed.</summary>
|
||||
// Token: 0x14000013 RID: 19
|
||||
// (add) Token: 0x06001911 RID: 6417 RVA: 0x00002053 File Offset: 0x00000253
|
||||
// (remove) Token: 0x06001912 RID: 6418 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x14000013")]
|
||||
public event SettingChangingEventHandler SettingChanging
|
||||
{
|
||||
[Token(Token = "0x6001911")]
|
||||
[Address(RVA = "0x289DC30", Offset = "0x289CA30", VA = "0x18289DC30")]
|
||||
add
|
||||
{
|
||||
}
|
||||
[Token(Token = "0x6001912")]
|
||||
[Address(RVA = "0x289DE10", Offset = "0x289CC10", VA = "0x18289DE10")]
|
||||
remove
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Occurs after the application settings are retrieved from storage.</summary>
|
||||
// Token: 0x14000014 RID: 20
|
||||
// (add) Token: 0x06001913 RID: 6419 RVA: 0x00002053 File Offset: 0x00000253
|
||||
// (remove) Token: 0x06001914 RID: 6420 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x14000014")]
|
||||
public event SettingsLoadedEventHandler SettingsLoaded
|
||||
{
|
||||
[Token(Token = "0x6001913")]
|
||||
[Address(RVA = "0x289DC60", Offset = "0x289CA60", VA = "0x18289DC60")]
|
||||
add
|
||||
{
|
||||
}
|
||||
[Token(Token = "0x6001914")]
|
||||
[Address(RVA = "0x289DE40", Offset = "0x289CC40", VA = "0x18289DE40")]
|
||||
remove
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Occurs before values are saved to the data store.</summary>
|
||||
// Token: 0x14000015 RID: 21
|
||||
// (add) Token: 0x06001915 RID: 6421 RVA: 0x00002053 File Offset: 0x00000253
|
||||
// (remove) Token: 0x06001916 RID: 6422 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x14000015")]
|
||||
public event SettingsSavingEventHandler SettingsSaving
|
||||
{
|
||||
[Token(Token = "0x6001915")]
|
||||
[Address(RVA = "0x289DC90", Offset = "0x289CA90", VA = "0x18289DC90")]
|
||||
add
|
||||
{
|
||||
}
|
||||
[Token(Token = "0x6001916")]
|
||||
[Address(RVA = "0x289DE70", Offset = "0x289CC70", VA = "0x18289DE70")]
|
||||
remove
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Returns the value of the named settings property for the previous version of the same application.</summary>
|
||||
/// <param name="propertyName">A <see cref="T:System.String" /> containing the name of the settings property whose value is to be returned.</param>
|
||||
/// <returns>An <see cref="T:System.Object" /> containing the value of the specified <see cref="T:System.Configuration.SettingsProperty" /> if found; otherwise, <see langword="null" />.</returns>
|
||||
/// <exception cref="T:System.Configuration.SettingsPropertyNotFoundException">The property does not exist. The property count is zero or the property cannot be found in the data store.</exception>
|
||||
// Token: 0x06001917 RID: 6423 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001917")]
|
||||
[Address(RVA = "0x289D990", Offset = "0x289C790", VA = "0x18289D990")]
|
||||
public object GetPreviousVersion(string propertyName)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Raises the <see cref="E:System.Configuration.ApplicationSettingsBase.PropertyChanged" /> event.</summary>
|
||||
/// <param name="sender">The source of the event.</param>
|
||||
/// <param name="e">A <see cref="T:System.ComponentModel.PropertyChangedEventArgs" /> that contains the event data.</param>
|
||||
// Token: 0x06001918 RID: 6424 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001918")]
|
||||
[Address(RVA = "0x289D9C0", Offset = "0x289C7C0", VA = "0x18289D9C0", Slot = "13")]
|
||||
protected virtual void OnPropertyChanged(object sender, PropertyChangedEventArgs e)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Raises the <see cref="E:System.Configuration.ApplicationSettingsBase.SettingChanging" /> event.</summary>
|
||||
/// <param name="sender">The source of the event.</param>
|
||||
/// <param name="e">A <see cref="T:System.Configuration.SettingChangingEventArgs" /> that contains the event data.</param>
|
||||
// Token: 0x06001919 RID: 6425 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001919")]
|
||||
[Address(RVA = "0x289D9F0", Offset = "0x289C7F0", VA = "0x18289D9F0", Slot = "14")]
|
||||
protected virtual void OnSettingChanging(object sender, SettingChangingEventArgs e)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Raises the <see cref="E:System.Configuration.ApplicationSettingsBase.SettingsLoaded" /> event.</summary>
|
||||
/// <param name="sender">The source of the event.</param>
|
||||
/// <param name="e">A <see cref="T:System.Configuration.SettingsLoadedEventArgs" /> that contains the event data.</param>
|
||||
// Token: 0x0600191A RID: 6426 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600191A")]
|
||||
[Address(RVA = "0x289DA20", Offset = "0x289C820", VA = "0x18289DA20", Slot = "15")]
|
||||
protected virtual void OnSettingsLoaded(object sender, SettingsLoadedEventArgs e)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Raises the <see cref="E:System.Configuration.ApplicationSettingsBase.SettingsSaving" /> event.</summary>
|
||||
/// <param name="sender">The source of the event.</param>
|
||||
/// <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data.</param>
|
||||
// Token: 0x0600191B RID: 6427 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600191B")]
|
||||
[Address(RVA = "0x289DA50", Offset = "0x289C850", VA = "0x18289DA50", Slot = "16")]
|
||||
protected virtual void OnSettingsSaving(object sender, CancelEventArgs e)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Refreshes the application settings property values from persistent storage.</summary>
|
||||
// Token: 0x0600191C RID: 6428 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600191C")]
|
||||
[Address(RVA = "0x289DA80", Offset = "0x289C880", VA = "0x18289DA80")]
|
||||
public void Reload()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Restores the persisted application settings values to their corresponding default properties.</summary>
|
||||
/// <exception cref="T:System.Configuration.ConfigurationErrorsException">The configuration file could not be parsed.</exception>
|
||||
// Token: 0x0600191D RID: 6429 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600191D")]
|
||||
[Address(RVA = "0x289DAB0", Offset = "0x289C8B0", VA = "0x18289DAB0")]
|
||||
public void Reset()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Stores the current values of the application settings properties.</summary>
|
||||
// Token: 0x0600191E RID: 6430 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600191E")]
|
||||
[Address(RVA = "0x289DAE0", Offset = "0x289C8E0", VA = "0x18289DAE0", Slot = "10")]
|
||||
public override void Save()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Updates application settings to reflect a more recent installation of the application.</summary>
|
||||
/// <exception cref="T:System.Configuration.ConfigurationErrorsException">The configuration file could not be parsed.</exception>
|
||||
// Token: 0x0600191F RID: 6431 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600191F")]
|
||||
[Address(RVA = "0x289DB10", Offset = "0x289C910", VA = "0x18289DB10", Slot = "17")]
|
||||
public virtual void Upgrade()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Represents a grouping of related application settings sections within a configuration file. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003B8 RID: 952
|
||||
[Token(Token = "0x20003B8")]
|
||||
public sealed class ApplicationSettingsGroup : ConfigurationSectionGroup
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ApplicationSettingsGroup" /> class.</summary>
|
||||
// Token: 0x06001933 RID: 6451 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001933")]
|
||||
[Address(RVA = "0x289DF00", Offset = "0x289CD00", VA = "0x18289DF00")]
|
||||
public ApplicationSettingsGroup()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Represents a group of user-scoped application settings in a configuration file.</summary>
|
||||
// Token: 0x020003BA RID: 954
|
||||
[Token(Token = "0x20003BA")]
|
||||
public sealed class ClientSettingsSection : ConfigurationSection
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ClientSettingsSection" /> class.</summary>
|
||||
// Token: 0x06001936 RID: 6454 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001936")]
|
||||
[Address(RVA = "0x289E560", Offset = "0x289D360", VA = "0x18289E560")]
|
||||
public ClientSettingsSection()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x170005A1 RID: 1441
|
||||
// (get) Token: 0x06001937 RID: 6455 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005A1")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x6001937")]
|
||||
[Address(RVA = "0x289E590", Offset = "0x289D390", VA = "0x18289E590", 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: 0x170005A2 RID: 1442
|
||||
// (get) Token: 0x06001938 RID: 6456 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005A2")]
|
||||
public SettingElementCollection Settings
|
||||
{
|
||||
[Token(Token = "0x6001938")]
|
||||
[Address(RVA = "0x289E5C0", Offset = "0x289D3C0", VA = "0x18289E5C0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
using System;
|
||||
using System.Configuration.Internal;
|
||||
using System.Xml;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Wraps the corresponding <see cref="T:System.Xml.XmlDocument" /> type and also carries the necessary information for reporting file-name and line numbers.</summary>
|
||||
// Token: 0x020003BF RID: 959
|
||||
[Token(Token = "0x20003BF")]
|
||||
public sealed class ConfigXmlDocument : XmlDocument, IConfigErrorInfo
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigXmlDocument" /> class.</summary>
|
||||
// Token: 0x06001958 RID: 6488 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001958")]
|
||||
[Address(RVA = "0x289EEA0", Offset = "0x289DCA0", VA = "0x18289EEA0")]
|
||||
public ConfigXmlDocument()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the configuration file name.</summary>
|
||||
/// <returns>The configuration file name.</returns>
|
||||
// Token: 0x170005AC RID: 1452
|
||||
// (get) Token: 0x06001959 RID: 6489 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005AC")]
|
||||
public string Filename
|
||||
{
|
||||
[Token(Token = "0x6001959")]
|
||||
[Address(RVA = "0x289EED0", Offset = "0x289DCD0", VA = "0x18289EED0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the current node line number.</summary>
|
||||
/// <returns>The line number for the current node.</returns>
|
||||
// Token: 0x170005AD RID: 1453
|
||||
// (get) Token: 0x0600195A RID: 6490 RVA: 0x0000AC20 File Offset: 0x00008E20
|
||||
[Token(Token = "0x170005AD")]
|
||||
public int LineNumber
|
||||
{
|
||||
[Token(Token = "0x600195A")]
|
||||
[Address(RVA = "0x289EF00", Offset = "0x289DD00", VA = "0x18289EF00")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600195B RID: 6491 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600195B")]
|
||||
[Address(RVA = "0x289EE40", Offset = "0x289DC40", VA = "0x18289EE40", Slot = "63")]
|
||||
string IConfigErrorInfo.get_Filename()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x0600195C RID: 6492 RVA: 0x0000AC38 File Offset: 0x00008E38
|
||||
[Token(Token = "0x600195C")]
|
||||
[Address(RVA = "0x289EE70", Offset = "0x289DC70", VA = "0x18289EE70", Slot = "64")]
|
||||
int IConfigErrorInfo.get_LineNumber()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// <summary>Loads a single configuration element.</summary>
|
||||
/// <param name="filename">The name of the file.</param>
|
||||
/// <param name="sourceReader">The source for the reader.</param>
|
||||
// Token: 0x0600195D RID: 6493 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600195D")]
|
||||
[Address(RVA = "0x289EE10", Offset = "0x289DC10", VA = "0x18289EE10")]
|
||||
public void LoadSingleElement(string filename, XmlTextReader sourceReader)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,171 @@
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Xml;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>The exception that is thrown when a configuration system error has occurred.</summary>
|
||||
// Token: 0x0200037F RID: 895
|
||||
[Token(Token = "0x200037F")]
|
||||
[Serializable]
|
||||
public class ConfigurationException : SystemException
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationException" /> class.</summary>
|
||||
// Token: 0x0600178A RID: 6026 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600178A")]
|
||||
[Address(RVA = "0x289EF90", Offset = "0x289DD90", VA = "0x18289EF90")]
|
||||
[Obsolete]
|
||||
public ConfigurationException()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationException" /> class.</summary>
|
||||
/// <param name="info">The object that holds the information to deserialize.</param>
|
||||
/// <param name="context">Contextual information about the source or destination.</param>
|
||||
// Token: 0x0600178B RID: 6027 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600178B")]
|
||||
[Address(RVA = "0x289F0B0", Offset = "0x289DEB0", VA = "0x18289F0B0")]
|
||||
protected ConfigurationException(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationException" /> class.</summary>
|
||||
/// <param name="message">A message describing why this <see cref="T:System.Configuration.ConfigurationException" /> exception was thrown.</param>
|
||||
// Token: 0x0600178C RID: 6028 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600178C")]
|
||||
[Address(RVA = "0x289F080", Offset = "0x289DE80", VA = "0x18289F080")]
|
||||
[Obsolete]
|
||||
public ConfigurationException(string message)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationException" /> class.</summary>
|
||||
/// <param name="message">A message describing why this <see cref="T:System.Configuration.ConfigurationException" /> exception was thrown.</param>
|
||||
/// <param name="inner">The inner exception that caused this <see cref="T:System.Configuration.ConfigurationException" /> to be thrown, if any.</param>
|
||||
// Token: 0x0600178D RID: 6029 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600178D")]
|
||||
[Address(RVA = "0x289EFC0", Offset = "0x289DDC0", VA = "0x18289EFC0")]
|
||||
[Obsolete]
|
||||
public ConfigurationException(string message, Exception inner)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationException" /> class.</summary>
|
||||
/// <param name="message">A message describing why this <see cref="T:System.Configuration.ConfigurationException" /> exception was thrown.</param>
|
||||
/// <param name="inner">The inner exception that caused this <see cref="T:System.Configuration.ConfigurationException" /> to be thrown, if any.</param>
|
||||
/// <param name="filename">The path to the configuration file that caused this <see cref="T:System.Configuration.ConfigurationException" /> to be thrown.</param>
|
||||
/// <param name="line">The line number within the configuration file at which this <see cref="T:System.Configuration.ConfigurationException" /> was thrown.</param>
|
||||
// Token: 0x0600178E RID: 6030 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600178E")]
|
||||
[Address(RVA = "0x289F0E0", Offset = "0x289DEE0", VA = "0x18289F0E0")]
|
||||
[Obsolete]
|
||||
public ConfigurationException(string message, Exception inner, string filename, int line)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationException" /> class.</summary>
|
||||
/// <param name="message">A message describing why this <see cref="T:System.Configuration.ConfigurationException" /> exception was thrown.</param>
|
||||
/// <param name="inner">The inner exception that caused this <see cref="T:System.Configuration.ConfigurationException" /> to be thrown, if any.</param>
|
||||
/// <param name="node">The <see cref="T:System.Xml.XmlNode" /> that caused this <see cref="T:System.Configuration.ConfigurationException" /> to be thrown.</param>
|
||||
// Token: 0x0600178F RID: 6031 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600178F")]
|
||||
[Address(RVA = "0x289F020", Offset = "0x289DE20", VA = "0x18289F020")]
|
||||
[Obsolete]
|
||||
public ConfigurationException(string message, Exception inner, XmlNode node)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationException" /> class.</summary>
|
||||
/// <param name="message">A message describing why this <see cref="T:System.Configuration.ConfigurationException" /> exception was thrown.</param>
|
||||
/// <param name="filename">The path to the configuration file that caused this <see cref="T:System.Configuration.ConfigurationException" /> to be thrown.</param>
|
||||
/// <param name="line">The line number within the configuration file at which this <see cref="T:System.Configuration.ConfigurationException" /> was thrown.</param>
|
||||
// Token: 0x06001790 RID: 6032 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001790")]
|
||||
[Address(RVA = "0x289EFF0", Offset = "0x289DDF0", VA = "0x18289EFF0")]
|
||||
[Obsolete]
|
||||
public ConfigurationException(string message, string filename, int line)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationException" /> class.</summary>
|
||||
/// <param name="message">A message describing why this <see cref="T:System.Configuration.ConfigurationException" /> exception was thrown.</param>
|
||||
/// <param name="node">The <see cref="T:System.Xml.XmlNode" /> that caused this <see cref="T:System.Configuration.ConfigurationException" /> to be thrown.</param>
|
||||
// Token: 0x06001791 RID: 6033 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001791")]
|
||||
[Address(RVA = "0x289F050", Offset = "0x289DE50", VA = "0x18289F050")]
|
||||
[Obsolete]
|
||||
public ConfigurationException(string message, XmlNode node)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets a description of why this configuration exception was thrown.</summary>
|
||||
/// <returns>A description of why this <see cref="T:System.Configuration.ConfigurationException" /> exception was thrown.</returns>
|
||||
// Token: 0x170004FC RID: 1276
|
||||
// (get) Token: 0x06001792 RID: 6034 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170004FC")]
|
||||
public virtual string BareMessage
|
||||
{
|
||||
[Token(Token = "0x6001792")]
|
||||
[Address(RVA = "0x289F110", Offset = "0x289DF10", VA = "0x18289F110", Slot = "12")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the path to the configuration file that caused this configuration exception to be thrown.</summary>
|
||||
/// <returns>The path to the configuration file that caused this <see cref="T:System.Configuration.ConfigurationException" /> exception to be thrown.</returns>
|
||||
// Token: 0x170004FD RID: 1277
|
||||
// (get) Token: 0x06001793 RID: 6035 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170004FD")]
|
||||
public virtual string Filename
|
||||
{
|
||||
[Token(Token = "0x6001793")]
|
||||
[Address(RVA = "0x289F140", Offset = "0x289DF40", VA = "0x18289F140", Slot = "13")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the line number within the configuration file at which this configuration exception was thrown.</summary>
|
||||
/// <returns>The line number within the configuration file at which this <see cref="T:System.Configuration.ConfigurationException" /> exception was thrown.</returns>
|
||||
// Token: 0x170004FE RID: 1278
|
||||
// (get) Token: 0x06001794 RID: 6036 RVA: 0x0000A5A8 File Offset: 0x000087A8
|
||||
[Token(Token = "0x170004FE")]
|
||||
public virtual int Line
|
||||
{
|
||||
[Token(Token = "0x6001794")]
|
||||
[Address(RVA = "0x289F170", Offset = "0x289DF70", VA = "0x18289F170", Slot = "14")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the path to the configuration file from which the internal <see cref="T:System.Xml.XmlNode" /> object was loaded when this configuration exception was thrown.</summary>
|
||||
/// <param name="node">The <see cref="T:System.Xml.XmlNode" /> that caused this <see cref="T:System.Configuration.ConfigurationException" /> exception to be thrown.</param>
|
||||
/// <returns>A <see langword="string" /> representing the node file name.</returns>
|
||||
// Token: 0x06001795 RID: 6037 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001795")]
|
||||
[Address(RVA = "0x289EF30", Offset = "0x289DD30", VA = "0x18289EF30")]
|
||||
[Obsolete]
|
||||
public static string GetXmlNodeFilename(XmlNode node)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Gets the line number within the configuration file that the internal <see cref="T:System.Xml.XmlNode" /> object represented when this configuration exception was thrown.</summary>
|
||||
/// <param name="node">The <see cref="T:System.Xml.XmlNode" /> that caused this <see cref="T:System.Configuration.ConfigurationException" /> exception to be thrown.</param>
|
||||
/// <returns>An <see langword="int" /> representing the node line number.</returns>
|
||||
// Token: 0x06001796 RID: 6038 RVA: 0x0000A5C0 File Offset: 0x000087C0
|
||||
[Token(Token = "0x6001796")]
|
||||
[Address(RVA = "0x289EF60", Offset = "0x289DD60", VA = "0x18289EF60")]
|
||||
[Obsolete]
|
||||
public static int GetXmlNodeLineNumber(XmlNode node)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
using System;
|
||||
using System.Collections.Specialized;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides runtime versions 1.0 and 1.1 support for reading configuration sections and common configuration settings.</summary>
|
||||
// Token: 0x020003BE RID: 958
|
||||
[Token(Token = "0x20003BE")]
|
||||
public sealed class ConfigurationSettings
|
||||
{
|
||||
// Token: 0x06001955 RID: 6485 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001955")]
|
||||
[Address(RVA = "0x289F1D0", Offset = "0x289DFD0", VA = "0x18289F1D0")]
|
||||
internal ConfigurationSettings()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets a read-only <see cref="T:System.Collections.Specialized.NameValueCollection" /> of the application settings section of the configuration file.</summary>
|
||||
/// <returns>A read-only <see cref="T:System.Collections.Specialized.NameValueCollection" /> of the application settings section from the configuration file.</returns>
|
||||
// Token: 0x170005AB RID: 1451
|
||||
// (get) Token: 0x06001956 RID: 6486 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005AB")]
|
||||
public static NameValueCollection AppSettings
|
||||
{
|
||||
[Token(Token = "0x6001956")]
|
||||
[Address(RVA = "0x289F200", Offset = "0x289E000", VA = "0x18289F200")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Returns the <see cref="T:System.Configuration.ConfigurationSection" /> object for the passed configuration section name and path.</summary>
|
||||
/// <param name="sectionName">A configuration name and path, such as "system.net/settings".</param>
|
||||
/// <returns>The <see cref="T:System.Configuration.ConfigurationSection" /> object for the passed configuration section name and path.
|
||||
///
|
||||
/// The <see cref="T:System.Configuration.ConfigurationSettings" /> class provides backward compatibility only. You should use the <see cref="T:System.Configuration.ConfigurationManager" /> class or <see cref="T:System.Web.Configuration.WebConfigurationManager" /> class instead.</returns>
|
||||
/// <exception cref="T:System.Configuration.ConfigurationException">Unable to retrieve the requested section.</exception>
|
||||
// Token: 0x06001957 RID: 6487 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001957")]
|
||||
[Address(RVA = "0x289F1A0", Offset = "0x289DFA0", VA = "0x18289F1A0")]
|
||||
[Obsolete]
|
||||
public static object GetConfig(string sectionName)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Specifies the default value for an application settings property.</summary>
|
||||
// Token: 0x020003C0 RID: 960
|
||||
[Token(Token = "0x20003C0")]
|
||||
[AttributeUsage(AttributeTargets.Property)]
|
||||
public sealed class DefaultSettingValueAttribute : Attribute
|
||||
{
|
||||
/// <summary>Initializes an instance of the <see cref="T:System.Configuration.DefaultSettingValueAttribute" /> class.</summary>
|
||||
/// <param name="value">A <see cref="T:System.String" /> that represents the default value for the property.</param>
|
||||
// Token: 0x0600195E RID: 6494 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600195E")]
|
||||
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
|
||||
public DefaultSettingValueAttribute(string value)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the default value for the application settings property.</summary>
|
||||
/// <returns>A <see cref="T:System.String" /> that represents the default value for the property.</returns>
|
||||
// Token: 0x170005AE RID: 1454
|
||||
// (get) Token: 0x0600195F RID: 6495 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005AE")]
|
||||
public string Value
|
||||
{
|
||||
[Token(Token = "0x600195F")]
|
||||
[Address(RVA = "0x28A0D10", Offset = "0x289FB10", VA = "0x1828A0D10")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
using System;
|
||||
using System.Xml;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides key/value pair configuration information from a configuration section.</summary>
|
||||
// Token: 0x020003C1 RID: 961
|
||||
[Token(Token = "0x20003C1")]
|
||||
public class DictionarySectionHandler : IConfigurationSectionHandler
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.DictionarySectionHandler" /> class.</summary>
|
||||
// Token: 0x06001960 RID: 6496 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001960")]
|
||||
[Address(RVA = "0x28A5400", Offset = "0x28A4200", VA = "0x1828A5400")]
|
||||
public DictionarySectionHandler()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the XML attribute name to use as the key in a key/value pair.</summary>
|
||||
/// <returns>A string value containing the name of the key attribute.</returns>
|
||||
// Token: 0x170005AF RID: 1455
|
||||
// (get) Token: 0x06001961 RID: 6497 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005AF")]
|
||||
protected virtual string KeyAttributeName
|
||||
{
|
||||
[Token(Token = "0x6001961")]
|
||||
[Address(RVA = "0x28A5430", Offset = "0x28A4230", VA = "0x1828A5430", Slot = "5")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the XML attribute name to use as the value in a key/value pair.</summary>
|
||||
/// <returns>A string value containing the name of the value attribute.</returns>
|
||||
// Token: 0x170005B0 RID: 1456
|
||||
// (get) Token: 0x06001962 RID: 6498 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005B0")]
|
||||
protected virtual string ValueAttributeName
|
||||
{
|
||||
[Token(Token = "0x6001962")]
|
||||
[Address(RVA = "0x28A5460", Offset = "0x28A4260", VA = "0x1828A5460", Slot = "6")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Creates a new configuration handler and adds it to the section-handler collection based on the specified parameters.</summary>
|
||||
/// <param name="parent">Parent object.</param>
|
||||
/// <param name="context">Configuration context object.</param>
|
||||
/// <param name="section">Section XML node.</param>
|
||||
/// <returns>A configuration object.</returns>
|
||||
// Token: 0x06001963 RID: 6499 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001963")]
|
||||
[Address(RVA = "0x28A53D0", Offset = "0x28A41D0", VA = "0x1828A53D0", Slot = "7")]
|
||||
public virtual object Create(object parent, object context, XmlNode section)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Defines extended capabilities for client-based application settings providers.</summary>
|
||||
// Token: 0x0200038B RID: 907
|
||||
[Token(Token = "0x200038B")]
|
||||
public interface IApplicationSettingsProvider
|
||||
{
|
||||
/// <summary>Returns the value of the specified settings property for the previous version of the same application.</summary>
|
||||
/// <param name="context">A <see cref="T:System.Configuration.SettingsContext" /> describing the current application usage.</param>
|
||||
/// <param name="property">The <see cref="T:System.Configuration.SettingsProperty" /> whose value is to be returned.</param>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsPropertyValue" /> containing the value of the specified property setting as it was last set in the previous version of the application; or <see langword="null" /> if the setting cannot be found.</returns>
|
||||
// Token: 0x060017EC RID: 6124
|
||||
[Token(Token = "0x60017EC")]
|
||||
[Address(Slot = "0")]
|
||||
SettingsPropertyValue GetPreviousVersion(SettingsContext context, SettingsProperty property);
|
||||
|
||||
/// <summary>Resets the application settings associated with the specified application to their default values.</summary>
|
||||
/// <param name="context">A <see cref="T:System.Configuration.SettingsContext" /> describing the current application usage.</param>
|
||||
// Token: 0x060017ED RID: 6125
|
||||
[Token(Token = "0x60017ED")]
|
||||
[Address(Slot = "1")]
|
||||
void Reset(SettingsContext context);
|
||||
|
||||
/// <summary>Indicates to the provider that the application has been upgraded. This offers the provider an opportunity to upgrade its stored settings as appropriate.</summary>
|
||||
/// <param name="context">A <see cref="T:System.Configuration.SettingsContext" /> describing the current application usage.</param>
|
||||
/// <param name="properties">A <see cref="T:System.Configuration.SettingsPropertyCollection" /> containing the settings property group whose values are to be retrieved.</param>
|
||||
// Token: 0x060017EE RID: 6126
|
||||
[Token(Token = "0x60017EE")]
|
||||
[Address(Slot = "2")]
|
||||
void Upgrade(SettingsContext context, SettingsPropertyCollection properties);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Xml;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Handles the access to certain configuration sections.</summary>
|
||||
// Token: 0x02000380 RID: 896
|
||||
[Token(Token = "0x2000380")]
|
||||
public interface IConfigurationSectionHandler
|
||||
{
|
||||
/// <summary>Creates a configuration section handler.</summary>
|
||||
/// <param name="parent">Parent object.</param>
|
||||
/// <param name="configContext">Configuration context object.</param>
|
||||
/// <param name="section">Section XML node.</param>
|
||||
/// <returns>The created section handler object.</returns>
|
||||
// Token: 0x06001797 RID: 6039
|
||||
[Token(Token = "0x6001797")]
|
||||
[Address(Slot = "0")]
|
||||
object Create(object parent, object configContext, XmlNode section);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides standard configuration methods.</summary>
|
||||
// Token: 0x020003C2 RID: 962
|
||||
[Token(Token = "0x20003C2")]
|
||||
[ComVisible(false)]
|
||||
public interface IConfigurationSystem
|
||||
{
|
||||
/// <summary>Gets the specified configuration.</summary>
|
||||
/// <param name="configKey">The configuration key.</param>
|
||||
/// <returns>The object representing the configuration.</returns>
|
||||
// Token: 0x06001964 RID: 6500
|
||||
[Token(Token = "0x6001964")]
|
||||
[Address(Slot = "0")]
|
||||
object GetConfig(string configKey);
|
||||
|
||||
/// <summary>Used for initialization.</summary>
|
||||
// Token: 0x06001965 RID: 6501
|
||||
[Token(Token = "0x6001965")]
|
||||
[Address(Slot = "1")]
|
||||
void Init();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Defines standard functionality for controls or libraries that store and retrieve application settings.</summary>
|
||||
// Token: 0x020003C5 RID: 965
|
||||
[Token(Token = "0x20003C5")]
|
||||
public interface IPersistComponentSettings
|
||||
{
|
||||
/// <summary>Gets or sets a value indicating whether the control should automatically persist its application settings properties.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the control should automatically persist its state; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x170005B3 RID: 1459
|
||||
// (get) Token: 0x0600196C RID: 6508
|
||||
// (set) Token: 0x0600196D RID: 6509
|
||||
[Token(Token = "0x170005B3")]
|
||||
bool SaveSettings
|
||||
{
|
||||
[Token(Token = "0x600196C")]
|
||||
[Address(Slot = "0")]
|
||||
get;
|
||||
[Token(Token = "0x600196D")]
|
||||
[Address(Slot = "1")]
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the value of the application settings key for the current instance of the control.</summary>
|
||||
/// <returns>A <see cref="T:System.String" /> containing the settings key for the current instance of the control.</returns>
|
||||
// Token: 0x170005B4 RID: 1460
|
||||
// (get) Token: 0x0600196E RID: 6510
|
||||
// (set) Token: 0x0600196F RID: 6511
|
||||
[Token(Token = "0x170005B4")]
|
||||
string SettingsKey
|
||||
{
|
||||
[Token(Token = "0x600196E")]
|
||||
[Address(Slot = "2")]
|
||||
get;
|
||||
[Token(Token = "0x600196F")]
|
||||
[Address(Slot = "3")]
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>Reads the control's application settings into their corresponding properties and updates the control's state.</summary>
|
||||
// Token: 0x06001970 RID: 6512
|
||||
[Token(Token = "0x6001970")]
|
||||
[Address(Slot = "4")]
|
||||
void LoadComponentSettings();
|
||||
|
||||
/// <summary>Resets the control's application settings properties to their default values.</summary>
|
||||
// Token: 0x06001971 RID: 6513
|
||||
[Token(Token = "0x6001971")]
|
||||
[Address(Slot = "5")]
|
||||
void ResetComponentSettings();
|
||||
|
||||
/// <summary>Persists the control's application settings properties.</summary>
|
||||
// Token: 0x06001972 RID: 6514
|
||||
[Token(Token = "0x6001972")]
|
||||
[Address(Slot = "6")]
|
||||
void SaveComponentSettings();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides an interface for defining an alternate application settings provider.</summary>
|
||||
// Token: 0x020003C7 RID: 967
|
||||
[Token(Token = "0x20003C7")]
|
||||
public interface ISettingsProviderService
|
||||
{
|
||||
/// <summary>Returns the settings provider compatible with the specified settings property.</summary>
|
||||
/// <param name="property">The <see cref="T:System.Configuration.SettingsProperty" /> that requires serialization.</param>
|
||||
/// <returns>If found, the <see cref="T:System.Configuration.SettingsProvider" /> that can persist the specified settings property; otherwise, <see langword="null" />.</returns>
|
||||
// Token: 0x06001977 RID: 6519
|
||||
[Token(Token = "0x6001977")]
|
||||
[Address(Slot = "0")]
|
||||
SettingsProvider GetSettingsProvider(SettingsProperty property);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides the configuration setting for International Domain Name (IDN) processing in the <see cref="T:System.Uri" /> class.</summary>
|
||||
// Token: 0x020003C3 RID: 963
|
||||
[Token(Token = "0x20003C3")]
|
||||
public sealed class IdnElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.IdnElement" /> class.</summary>
|
||||
// Token: 0x06001966 RID: 6502 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001966")]
|
||||
[Address(RVA = "0x28A6400", Offset = "0x28A5200", VA = "0x1828A6400")]
|
||||
public IdnElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the value of the <see cref="T:System.Configuration.IdnElement" /> configuration setting.</summary>
|
||||
/// <returns>A <see cref="T:System.UriIdnScope" /> that contains the current configuration setting for IDN processing.</returns>
|
||||
// Token: 0x170005B1 RID: 1457
|
||||
// (get) Token: 0x06001967 RID: 6503 RVA: 0x0000AC50 File Offset: 0x00008E50
|
||||
// (set) Token: 0x06001968 RID: 6504 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170005B1")]
|
||||
public UriIdnScope Enabled
|
||||
{
|
||||
[Token(Token = "0x6001967")]
|
||||
[Address(RVA = "0x28A6430", Offset = "0x28A5230", VA = "0x1828A6430")]
|
||||
get
|
||||
{
|
||||
return UriIdnScope.None;
|
||||
}
|
||||
[Token(Token = "0x6001968")]
|
||||
[Address(RVA = "0x28A6490", Offset = "0x28A5290", VA = "0x1828A6490")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170005B2 RID: 1458
|
||||
// (get) Token: 0x06001969 RID: 6505 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005B2")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x6001969")]
|
||||
[Address(RVA = "0x28A6460", Offset = "0x28A5260", VA = "0x1828A6460", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Xml;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides a legacy section-handler definition for configuration sections that are not handled by the <see cref="N:System.Configuration" /> types.</summary>
|
||||
// Token: 0x020003C4 RID: 964
|
||||
[Token(Token = "0x20003C4")]
|
||||
public class IgnoreSectionHandler : IConfigurationSectionHandler
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.IgnoreSectionHandler" /> class.</summary>
|
||||
// Token: 0x0600196A RID: 6506 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600196A")]
|
||||
[Address(RVA = "0x28A64F0", Offset = "0x28A52F0", VA = "0x1828A64F0")]
|
||||
public IgnoreSectionHandler()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Creates a new configuration handler and adds the specified configuration object to the section-handler collection.</summary>
|
||||
/// <param name="parent">The configuration settings in a corresponding parent configuration section.</param>
|
||||
/// <param name="configContext">The virtual path for which the configuration section handler computes configuration values. Normally this parameter is reserved and is <see langword="null" />.</param>
|
||||
/// <param name="section">An <see cref="T:System.Xml.XmlNode" /> that contains the configuration information to be handled. Provides direct access to the XML contents of the configuration section.</param>
|
||||
/// <returns>The created configuration handler object.</returns>
|
||||
// Token: 0x0600196B RID: 6507 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600196B")]
|
||||
[Address(RVA = "0x28A64C0", Offset = "0x28A52C0", VA = "0x1828A64C0", Slot = "5")]
|
||||
public virtual object Create(object parent, object configContext, XmlNode section)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides the configuration setting for International Resource Identifier (IRI) processing in the <see cref="T:System.Uri" /> class.</summary>
|
||||
// Token: 0x020003C6 RID: 966
|
||||
[Token(Token = "0x20003C6")]
|
||||
public sealed class IriParsingElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.IriParsingElement" /> class.</summary>
|
||||
// Token: 0x06001973 RID: 6515 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001973")]
|
||||
[Address(RVA = "0x28A6520", Offset = "0x28A5320", VA = "0x1828A6520")]
|
||||
public IriParsingElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the value of the <see cref="T:System.Configuration.IriParsingElement" /> configuration setting.</summary>
|
||||
/// <returns>A Boolean that indicates if International Resource Identifier (IRI) processing is enabled.</returns>
|
||||
// Token: 0x170005B5 RID: 1461
|
||||
// (get) Token: 0x06001974 RID: 6516 RVA: 0x0000AC68 File Offset: 0x00008E68
|
||||
// (set) Token: 0x06001975 RID: 6517 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170005B5")]
|
||||
public bool Enabled
|
||||
{
|
||||
[Token(Token = "0x6001974")]
|
||||
[Address(RVA = "0x28A6550", Offset = "0x28A5350", VA = "0x1828A6550")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x6001975")]
|
||||
[Address(RVA = "0x28A65B0", Offset = "0x28A53B0", VA = "0x1828A65B0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170005B6 RID: 1462
|
||||
// (get) Token: 0x06001976 RID: 6518 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005B6")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x6001976")]
|
||||
[Address(RVA = "0x28A6580", Offset = "0x28A5380", VA = "0x1828A6580", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,112 @@
|
||||
using System;
|
||||
using System.Collections.Specialized;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides persistence for application settings classes.</summary>
|
||||
// Token: 0x020003C8 RID: 968
|
||||
[Token(Token = "0x20003C8")]
|
||||
public class LocalFileSettingsProvider : SettingsProvider, IApplicationSettingsProvider
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.LocalFileSettingsProvider" /> class.</summary>
|
||||
// Token: 0x06001978 RID: 6520 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001978")]
|
||||
[Address(RVA = "0x28A6700", Offset = "0x28A5500", VA = "0x1828A6700")]
|
||||
public LocalFileSettingsProvider()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the name of the currently running application.</summary>
|
||||
/// <returns>A string that contains the application's display name.</returns>
|
||||
// Token: 0x170005B7 RID: 1463
|
||||
// (get) Token: 0x06001979 RID: 6521 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x0600197A RID: 6522 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170005B7")]
|
||||
public override string ApplicationName
|
||||
{
|
||||
[Token(Token = "0x6001979")]
|
||||
[Address(RVA = "0x28A6730", Offset = "0x28A5530", VA = "0x1828A6730", Slot = "5")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x600197A")]
|
||||
[Address(RVA = "0x28A6760", Offset = "0x28A5560", VA = "0x1828A6760", Slot = "6")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Returns the value of the named settings property for the previous version of the same application.</summary>
|
||||
/// <param name="context">A <see cref="T:System.Configuration.SettingsContext" /> that describes where the application settings property is used.</param>
|
||||
/// <param name="property">The <see cref="T:System.Configuration.SettingsProperty" /> whose value is to be returned.</param>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsPropertyValue" /> representing the application setting if found; otherwise, <see langword="null" />.</returns>
|
||||
// Token: 0x0600197B RID: 6523 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600197B")]
|
||||
[Address(RVA = "0x28A65E0", Offset = "0x28A53E0", VA = "0x1828A65E0", Slot = "9")]
|
||||
public SettingsPropertyValue GetPreviousVersion(SettingsContext context, SettingsProperty property)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Returns the collection of setting 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 usage.</param>
|
||||
/// <param name="properties">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>
|
||||
/// <exception cref="T:System.Configuration.ConfigurationErrorsException">A user-scoped setting was encountered but the current configuration only supports application-scoped settings.</exception>
|
||||
// Token: 0x0600197C RID: 6524 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600197C")]
|
||||
[Address(RVA = "0x28A6610", Offset = "0x28A5410", VA = "0x1828A6610", Slot = "7")]
|
||||
public override SettingsPropertyValueCollection GetPropertyValues(SettingsContext context, SettingsPropertyCollection properties)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Initializes the provider.</summary>
|
||||
/// <param name="name">The friendly name of the provider.</param>
|
||||
/// <param name="values">A collection of the name/value pairs representing the provider-specific attributes specified in the configuration for this provider.</param>
|
||||
// Token: 0x0600197D RID: 6525 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600197D")]
|
||||
[Address(RVA = "0x28A6640", Offset = "0x28A5440", VA = "0x1828A6640", Slot = "4")]
|
||||
public override void Initialize(string name, NameValueCollection values)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Resets all application settings properties associated with the specified application to their default values.</summary>
|
||||
/// <param name="context">A <see cref="T:System.Configuration.SettingsContext" /> describing the current application usage.</param>
|
||||
/// <exception cref="T:System.Configuration.ConfigurationErrorsException">A user-scoped setting was encountered but the current configuration only supports application-scoped settings.</exception>
|
||||
// Token: 0x0600197E RID: 6526 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600197E")]
|
||||
[Address(RVA = "0x28A6670", Offset = "0x28A5470", VA = "0x1828A6670", Slot = "10")]
|
||||
public void Reset(SettingsContext context)
|
||||
{
|
||||
}
|
||||
|
||||
/// <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="values">A <see cref="T:System.Configuration.SettingsPropertyValueCollection" /> representing the group of property settings to set.</param>
|
||||
/// <exception cref="T:System.Configuration.ConfigurationErrorsException">A user-scoped setting was encountered but the current configuration only supports application-scoped settings.
|
||||
/// -or-
|
||||
/// There was a general failure saving the settings to the configuration file.</exception>
|
||||
// Token: 0x0600197F RID: 6527 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600197F")]
|
||||
[Address(RVA = "0x28A66A0", Offset = "0x28A54A0", VA = "0x1828A66A0", Slot = "8")]
|
||||
public override void SetPropertyValues(SettingsContext context, SettingsPropertyValueCollection values)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Attempts to migrate previous user-scoped settings from a previous version of the same application.</summary>
|
||||
/// <param name="context">A <see cref="T:System.Configuration.SettingsContext" /> describing the current application usage.</param>
|
||||
/// <param name="properties">A <see cref="T:System.Configuration.SettingsPropertyCollection" /> containing the settings property group whose values are to be retrieved.</param>
|
||||
/// <exception cref="T:System.Configuration.ConfigurationErrorsException">A user-scoped setting was encountered but the current configuration only supports application-scoped settings.
|
||||
/// -or-
|
||||
/// The previous version of the configuration file could not be accessed.</exception>
|
||||
// Token: 0x06001980 RID: 6528 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001980")]
|
||||
[Address(RVA = "0x28A66D0", Offset = "0x28A54D0", VA = "0x1828A66D0", Slot = "11")]
|
||||
public void Upgrade(SettingsContext context, SettingsPropertyCollection properties)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using System.Xml;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides access to a configuration file. This type supports the .NET Framework configuration infrastructure and is not intended to be used directly from your code.</summary>
|
||||
// Token: 0x020003C9 RID: 969
|
||||
[Token(Token = "0x20003C9")]
|
||||
public class NameValueFileSectionHandler : IConfigurationSectionHandler
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.NameValueFileSectionHandler" /> class.</summary>
|
||||
// Token: 0x06001981 RID: 6529 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001981")]
|
||||
[Address(RVA = "0x28A7050", Offset = "0x28A5E50", VA = "0x1828A7050")]
|
||||
public NameValueFileSectionHandler()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Creates a new configuration handler and adds it to the section-handler collection based on the specified parameters.</summary>
|
||||
/// <param name="parent">The parent object.</param>
|
||||
/// <param name="configContext">The configuration context object.</param>
|
||||
/// <param name="section">The section XML node.</param>
|
||||
/// <returns>A configuration object.</returns>
|
||||
/// <exception cref="T:System.Configuration.ConfigurationErrorsException">The file specified in the <see langword="file" /> attribute of <paramref name="section" /> exists but cannot be loaded.
|
||||
/// -or-
|
||||
/// The <see langword="name" /> attribute of <paramref name="section" /> does not match the root element of the file specified in the <see langword="file" /> attribute.</exception>
|
||||
// Token: 0x06001982 RID: 6530 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001982")]
|
||||
[Address(RVA = "0x28A7020", Offset = "0x28A5E20", VA = "0x1828A7020", Slot = "4")]
|
||||
public object Create(object parent, object configContext, XmlNode section)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
using System;
|
||||
using System.Xml;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides name/value-pair configuration information from a configuration section.</summary>
|
||||
// Token: 0x020003CA RID: 970
|
||||
[Token(Token = "0x20003CA")]
|
||||
public class NameValueSectionHandler : IConfigurationSectionHandler
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.NameValueSectionHandler" /> class.</summary>
|
||||
// Token: 0x06001983 RID: 6531 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001983")]
|
||||
[Address(RVA = "0x28A70B0", Offset = "0x28A5EB0", VA = "0x1828A70B0")]
|
||||
public NameValueSectionHandler()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the XML attribute name to use as the key in a key/value pair.</summary>
|
||||
/// <returns>A <see cref="T:System.String" /> value containing the name of the key attribute.</returns>
|
||||
// Token: 0x170005B8 RID: 1464
|
||||
// (get) Token: 0x06001984 RID: 6532 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005B8")]
|
||||
protected virtual string KeyAttributeName
|
||||
{
|
||||
[Token(Token = "0x6001984")]
|
||||
[Address(RVA = "0x28A70E0", Offset = "0x28A5EE0", VA = "0x1828A70E0", Slot = "5")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the XML attribute name to use as the value in a key/value pair.</summary>
|
||||
/// <returns>A <see cref="T:System.String" /> value containing the name of the value attribute.</returns>
|
||||
// Token: 0x170005B9 RID: 1465
|
||||
// (get) Token: 0x06001985 RID: 6533 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005B9")]
|
||||
protected virtual string ValueAttributeName
|
||||
{
|
||||
[Token(Token = "0x6001985")]
|
||||
[Address(RVA = "0x28A7110", Offset = "0x28A5F10", VA = "0x1828A7110", Slot = "6")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Creates a new configuration handler and adds it to the section-handler collection based on the specified parameters.</summary>
|
||||
/// <param name="parent">Parent object.</param>
|
||||
/// <param name="context">Configuration context object.</param>
|
||||
/// <param name="section">Section XML node.</param>
|
||||
/// <returns>A configuration object.</returns>
|
||||
// Token: 0x06001986 RID: 6534 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001986")]
|
||||
[Address(RVA = "0x28A7080", Offset = "0x28A5E80", VA = "0x1828A7080", Slot = "4")]
|
||||
public object Create(object parent, object context, XmlNode section)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Specifies that a settings provider should disable any logic that gets invoked when an application upgrade is detected. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003CB RID: 971
|
||||
[Token(Token = "0x20003CB")]
|
||||
[AttributeUsage(AttributeTargets.Property)]
|
||||
public sealed class NoSettingsVersionUpgradeAttribute : Attribute
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.NoSettingsVersionUpgradeAttribute" /> class.</summary>
|
||||
// Token: 0x06001987 RID: 6535 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001987")]
|
||||
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
|
||||
public NoSettingsVersionUpgradeAttribute()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Represents an element in a <see cref="T:System.Configuration.SchemeSettingElementCollection" /> class.</summary>
|
||||
// Token: 0x020003CC RID: 972
|
||||
[Token(Token = "0x20003CC")]
|
||||
public sealed class SchemeSettingElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SchemeSettingElement" /> class.</summary>
|
||||
// Token: 0x06001988 RID: 6536 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001988")]
|
||||
[Address(RVA = "0x28AB750", Offset = "0x28AA550", VA = "0x1828AB750")]
|
||||
public SchemeSettingElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the value of the GenericUriParserOptions entry from a <see cref="T:System.Configuration.SchemeSettingElement" /> instance.</summary>
|
||||
/// <returns>The value of GenericUriParserOptions entry.</returns>
|
||||
// Token: 0x170005BA RID: 1466
|
||||
// (get) Token: 0x06001989 RID: 6537 RVA: 0x0000AC80 File Offset: 0x00008E80
|
||||
[Token(Token = "0x170005BA")]
|
||||
public GenericUriParserOptions GenericUriParserOptions
|
||||
{
|
||||
[Token(Token = "0x6001989")]
|
||||
[Address(RVA = "0x28AB780", Offset = "0x28AA580", VA = "0x1828AB780")]
|
||||
get
|
||||
{
|
||||
return GenericUriParserOptions.Default;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the value of the Name entry from a <see cref="T:System.Configuration.SchemeSettingElement" /> instance.</summary>
|
||||
/// <returns>The protocol used by this schema setting.</returns>
|
||||
// Token: 0x170005BB RID: 1467
|
||||
// (get) Token: 0x0600198A RID: 6538 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005BB")]
|
||||
public string Name
|
||||
{
|
||||
[Token(Token = "0x600198A")]
|
||||
[Address(RVA = "0x28AB7B0", Offset = "0x28AA5B0", VA = "0x1828AB7B0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170005BC RID: 1468
|
||||
// (get) Token: 0x0600198B RID: 6539 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005BC")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x600198B")]
|
||||
[Address(RVA = "0x28AB7E0", Offset = "0x28AA5E0", VA = "0x1828AB7E0", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Represents a custom settings attribute used to associate settings information with a settings property.</summary>
|
||||
// Token: 0x020003B1 RID: 945
|
||||
[Token(Token = "0x20003B1")]
|
||||
[AttributeUsage(AttributeTargets.Property)]
|
||||
public class SettingAttribute : Attribute
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingAttribute" /> class.</summary>
|
||||
// Token: 0x06001902 RID: 6402 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001902")]
|
||||
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
|
||||
public SettingAttribute()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides data for the <see cref="E:System.Configuration.ApplicationSettingsBase.SettingChanging" /> event.</summary>
|
||||
// Token: 0x020003B4 RID: 948
|
||||
[Token(Token = "0x20003B4")]
|
||||
public class SettingChangingEventArgs : CancelEventArgs
|
||||
{
|
||||
/// <summary>Initializes an instance of the <see cref="T:System.Configuration.SettingChangingEventArgs" /> class.</summary>
|
||||
/// <param name="settingName">A <see cref="T:System.String" /> containing the name of the application setting.</param>
|
||||
/// <param name="settingClass">A <see cref="T:System.String" /> containing a category description of the setting. Often this parameter is set to the application settings group name.</param>
|
||||
/// <param name="settingKey">A <see cref="T:System.String" /> containing the application settings key.</param>
|
||||
/// <param name="newValue">An <see cref="T:System.Object" /> that contains the new value to be assigned to the application settings property.</param>
|
||||
/// <param name="cancel">
|
||||
/// <see langword="true" /> to cancel the event; otherwise, <see langword="false" />.</param>
|
||||
// Token: 0x06001924 RID: 6436 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001924")]
|
||||
[Address(RVA = "0x28AB810", Offset = "0x28AA610", VA = "0x1828AB810")]
|
||||
public SettingChangingEventArgs(string settingName, string settingClass, string settingKey, object newValue, bool cancel)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the new value being assigned to the application settings property.</summary>
|
||||
/// <returns>An <see cref="T:System.Object" /> that contains the new value to be assigned to the application settings property.</returns>
|
||||
// Token: 0x1700059C RID: 1436
|
||||
// (get) Token: 0x06001925 RID: 6437 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700059C")]
|
||||
public object NewValue
|
||||
{
|
||||
[Token(Token = "0x6001925")]
|
||||
[Address(RVA = "0x28AB840", Offset = "0x28AA640", VA = "0x1828AB840")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the application settings property category.</summary>
|
||||
/// <returns>A <see cref="T:System.String" /> containing a category description of the setting. Typically, this parameter is set to the application settings group name.</returns>
|
||||
// Token: 0x1700059D RID: 1437
|
||||
// (get) Token: 0x06001926 RID: 6438 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700059D")]
|
||||
public string SettingClass
|
||||
{
|
||||
[Token(Token = "0x6001926")]
|
||||
[Address(RVA = "0x28AB870", Offset = "0x28AA670", VA = "0x1828AB870")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the application settings key associated with the property.</summary>
|
||||
/// <returns>A <see cref="T:System.String" /> containing the application settings key.</returns>
|
||||
// Token: 0x1700059E RID: 1438
|
||||
// (get) Token: 0x06001927 RID: 6439 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700059E")]
|
||||
public string SettingKey
|
||||
{
|
||||
[Token(Token = "0x6001927")]
|
||||
[Address(RVA = "0x28AB8A0", Offset = "0x28AA6A0", VA = "0x1828AB8A0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the name of the application setting associated with the application settings property.</summary>
|
||||
/// <returns>A <see cref="T:System.String" /> containing the name of the application setting.</returns>
|
||||
// Token: 0x1700059F RID: 1439
|
||||
// (get) Token: 0x06001928 RID: 6440 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700059F")]
|
||||
public string SettingName
|
||||
{
|
||||
[Token(Token = "0x6001928")]
|
||||
[Address(RVA = "0x28AB8D0", Offset = "0x28AA6D0", VA = "0x1828AB8D0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Represents the method that will handle the <see cref="E:System.Configuration.ApplicationSettingsBase.SettingChanging" /> event.</summary>
|
||||
/// <param name="sender">The source of the event, typically an application settings wrapper class derived from the <see cref="T:System.Configuration.ApplicationSettingsBase" /> class.</param>
|
||||
/// <param name="e">A <see cref="T:System.Configuration.SettingChangingEventArgs" /> containing the data for the event.</param>
|
||||
// Token: 0x020003B3 RID: 947
|
||||
// (Invoke) Token: 0x06001921 RID: 6433
|
||||
[Token(Token = "0x20003B3")]
|
||||
public delegate void SettingChangingEventHandler(object sender, SettingChangingEventArgs e);
|
||||
}
|
||||
@@ -0,0 +1,105 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Represents a simplified configuration element used for updating elements in the configuration. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003BC RID: 956
|
||||
[Token(Token = "0x20003BC")]
|
||||
public sealed class SettingElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingElement" /> class.</summary>
|
||||
// Token: 0x06001942 RID: 6466 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001942")]
|
||||
[Address(RVA = "0x28ABB70", Offset = "0x28AA970", VA = "0x1828ABB70")]
|
||||
public SettingElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingElement" /> class based on supplied parameters.</summary>
|
||||
/// <param name="name">The name of the <see cref="T:System.Configuration.SettingElement" /> object.</param>
|
||||
/// <param name="serializeAs">A <see cref="T:System.Configuration.SettingsSerializeAs" /> object. This object is an enumeration used as the serialization scheme to store configuration settings.</param>
|
||||
// Token: 0x06001943 RID: 6467 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001943")]
|
||||
[Address(RVA = "0x28ABBA0", Offset = "0x28AA9A0", VA = "0x1828ABBA0")]
|
||||
public SettingElement(string name, SettingsSerializeAs serializeAs)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the name of the <see cref="T:System.Configuration.SettingElement" /> object.</summary>
|
||||
/// <returns>The name of the <see cref="T:System.Configuration.SettingElement" /> object.</returns>
|
||||
// Token: 0x170005A5 RID: 1445
|
||||
// (get) Token: 0x06001944 RID: 6468 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06001945 RID: 6469 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170005A5")]
|
||||
public string Name
|
||||
{
|
||||
[Token(Token = "0x6001944")]
|
||||
[Address(RVA = "0x28ABBD0", Offset = "0x28AA9D0", VA = "0x1828ABBD0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6001945")]
|
||||
[Address(RVA = "0x28ABC90", Offset = "0x28AAA90", VA = "0x1828ABC90")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170005A6 RID: 1446
|
||||
// (get) Token: 0x06001946 RID: 6470 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005A6")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x6001946")]
|
||||
[Address(RVA = "0x28ABC00", Offset = "0x28AAA00", VA = "0x1828ABC00", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the serialization mechanism used to persist the values of the <see cref="T:System.Configuration.SettingElement" /> object.</summary>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsSerializeAs" /> object.</returns>
|
||||
// Token: 0x170005A7 RID: 1447
|
||||
// (get) Token: 0x06001947 RID: 6471 RVA: 0x0000ABD8 File Offset: 0x00008DD8
|
||||
// (set) Token: 0x06001948 RID: 6472 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170005A7")]
|
||||
public SettingsSerializeAs SerializeAs
|
||||
{
|
||||
[Token(Token = "0x6001947")]
|
||||
[Address(RVA = "0x28ABC30", Offset = "0x28AAA30", VA = "0x1828ABC30")]
|
||||
get
|
||||
{
|
||||
return SettingsSerializeAs.String;
|
||||
}
|
||||
[Token(Token = "0x6001948")]
|
||||
[Address(RVA = "0x28ABCC0", Offset = "0x28AAAC0", VA = "0x1828ABCC0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the value of a <see cref="T:System.Configuration.SettingElement" /> object by using a <see cref="T:System.Configuration.SettingValueElement" /> object.</summary>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingValueElement" /> object containing the value of the <see cref="T:System.Configuration.SettingElement" /> object.</returns>
|
||||
// Token: 0x170005A8 RID: 1448
|
||||
// (get) Token: 0x06001949 RID: 6473 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x0600194A RID: 6474 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170005A8")]
|
||||
public SettingValueElement Value
|
||||
{
|
||||
[Token(Token = "0x6001949")]
|
||||
[Address(RVA = "0x28ABC60", Offset = "0x28AAA60", VA = "0x1828ABC60")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x600194A")]
|
||||
[Address(RVA = "0x28ABCF0", Offset = "0x28AAAF0", VA = "0x1828ABCF0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Contains a collection of <see cref="T:System.Configuration.SettingElement" /> objects. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003BB RID: 955
|
||||
[Token(Token = "0x20003BB")]
|
||||
public sealed class SettingElementCollection : ConfigurationElementCollection
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingElementCollection" /> class.</summary>
|
||||
// Token: 0x06001939 RID: 6457 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001939")]
|
||||
[Address(RVA = "0x28ABAE0", Offset = "0x28AA8E0", VA = "0x1828ABAE0")]
|
||||
public SettingElementCollection()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the type of the configuration collection.</summary>
|
||||
/// <returns>The <see cref="T:System.Configuration.ConfigurationElementCollectionType" /> object of the collection.</returns>
|
||||
// Token: 0x170005A3 RID: 1443
|
||||
// (get) Token: 0x0600193A RID: 6458 RVA: 0x0000ABC0 File Offset: 0x00008DC0
|
||||
[Token(Token = "0x170005A3")]
|
||||
public override ConfigurationElementCollectionType CollectionType
|
||||
{
|
||||
[Token(Token = "0x600193A")]
|
||||
[Address(RVA = "0x28ABB10", Offset = "0x28AA910", VA = "0x1828ABB10", Slot = "13")]
|
||||
get
|
||||
{
|
||||
return ConfigurationElementCollectionType.BasicMap;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170005A4 RID: 1444
|
||||
// (get) Token: 0x0600193B RID: 6459 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005A4")]
|
||||
protected override string ElementName
|
||||
{
|
||||
[Token(Token = "0x600193B")]
|
||||
[Address(RVA = "0x28ABB40", Offset = "0x28AA940", VA = "0x1828ABB40", Slot = "14")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Adds a <see cref="T:System.Configuration.SettingElement" /> object to the collection.</summary>
|
||||
/// <param name="element">The <see cref="T:System.Configuration.SettingElement" /> object to add to the collection.</param>
|
||||
// Token: 0x0600193C RID: 6460 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600193C")]
|
||||
[Address(RVA = "0x28AB9C0", Offset = "0x28AA7C0", VA = "0x1828AB9C0")]
|
||||
public void Add(SettingElement element)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Removes all <see cref="T:System.Configuration.SettingElement" /> objects from the collection.</summary>
|
||||
// Token: 0x0600193D RID: 6461 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600193D")]
|
||||
[Address(RVA = "0x28AB9F0", Offset = "0x28AA7F0", VA = "0x1828AB9F0")]
|
||||
public void Clear()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600193E RID: 6462 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600193E")]
|
||||
[Address(RVA = "0x28ABA20", Offset = "0x28AA820", VA = "0x1828ABA20", Slot = "16")]
|
||||
protected override ConfigurationElement CreateNewElement()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Gets a <see cref="T:System.Configuration.SettingElement" /> object from the collection.</summary>
|
||||
/// <param name="elementKey">A string value representing the <see cref="T:System.Configuration.SettingElement" /> object in the collection.</param>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingElement" /> object.</returns>
|
||||
// Token: 0x0600193F RID: 6463 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600193F")]
|
||||
[Address(RVA = "0x28ABA80", Offset = "0x28AA880", VA = "0x1828ABA80")]
|
||||
public SettingElement Get(string elementKey)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06001940 RID: 6464 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001940")]
|
||||
[Address(RVA = "0x28ABA50", Offset = "0x28AA850", VA = "0x1828ABA50", Slot = "17")]
|
||||
protected override object GetElementKey(ConfigurationElement element)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Removes a <see cref="T:System.Configuration.SettingElement" /> object from the collection.</summary>
|
||||
/// <param name="element">A <see cref="T:System.Configuration.SettingElement" /> object.</param>
|
||||
// Token: 0x06001941 RID: 6465 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001941")]
|
||||
[Address(RVA = "0x28ABAB0", Offset = "0x28AA8B0", VA = "0x1828ABAB0")]
|
||||
public void Remove(SettingElement element)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
using System;
|
||||
using System.Xml;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Contains the XML representing the serialized value of the setting. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003BD RID: 957
|
||||
[Token(Token = "0x20003BD")]
|
||||
public sealed class SettingValueElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingValueElement" /> class.</summary>
|
||||
// Token: 0x0600194B RID: 6475 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600194B")]
|
||||
[Address(RVA = "0x28ABE40", Offset = "0x28AAC40", VA = "0x1828ABE40")]
|
||||
public SettingValueElement()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x170005A9 RID: 1449
|
||||
// (get) Token: 0x0600194C RID: 6476 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005A9")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x600194C")]
|
||||
[Address(RVA = "0x28ABE70", Offset = "0x28AAC70", VA = "0x1828ABE70", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the value of a <see cref="T:System.Configuration.SettingValueElement" /> object by using an <see cref="T:System.Xml.XmlNode" /> object.</summary>
|
||||
/// <returns>An <see cref="T:System.Xml.XmlNode" /> object containing the value of a <see cref="T:System.Configuration.SettingElement" />.</returns>
|
||||
// Token: 0x170005AA RID: 1450
|
||||
// (get) Token: 0x0600194D RID: 6477 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x0600194E RID: 6478 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170005AA")]
|
||||
public XmlNode ValueXml
|
||||
{
|
||||
[Token(Token = "0x600194D")]
|
||||
[Address(RVA = "0x28ABEA0", Offset = "0x28AACA0", VA = "0x1828ABEA0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x600194E")]
|
||||
[Address(RVA = "0x28ABED0", Offset = "0x28AACD0", VA = "0x1828ABED0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600194F RID: 6479 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600194F")]
|
||||
[Address(RVA = "0x28ABD20", Offset = "0x28AAB20", VA = "0x1828ABD20", Slot = "5")]
|
||||
protected override void DeserializeElement(XmlReader reader, bool serializeCollectionKey)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001950 RID: 6480 RVA: 0x0000ABF0 File Offset: 0x00008DF0
|
||||
[Token(Token = "0x6001950")]
|
||||
[Address(RVA = "0x28ABD50", Offset = "0x28AAB50", VA = "0x1828ABD50", Slot = "7")]
|
||||
protected override bool IsModified()
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06001951 RID: 6481 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001951")]
|
||||
[Address(RVA = "0x28ABDB0", Offset = "0x28AABB0", VA = "0x1828ABDB0", Slot = "9")]
|
||||
protected override void Reset(ConfigurationElement parentElement)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001952 RID: 6482 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001952")]
|
||||
[Address(RVA = "0x28ABD80", Offset = "0x28AAB80", VA = "0x1828ABD80", Slot = "10")]
|
||||
protected override void ResetModified()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001953 RID: 6483 RVA: 0x0000AC08 File Offset: 0x00008E08
|
||||
[Token(Token = "0x6001953")]
|
||||
[Address(RVA = "0x28ABDE0", Offset = "0x28AABE0", VA = "0x1828ABDE0", Slot = "11")]
|
||||
protected override bool SerializeToXmlElement(XmlWriter writer, string elementName)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06001954 RID: 6484 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001954")]
|
||||
[Address(RVA = "0x28ABE10", Offset = "0x28AAC10", VA = "0x1828ABE10", Slot = "12")]
|
||||
protected override void Unmerge(ConfigurationElement sourceElement, ConfigurationElement parentElement, ConfigurationSaveMode saveMode)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Represents a collection of key/value pairs used to describe a configuration object as well as a <see cref="T:System.Configuration.SettingsProperty" /> object.</summary>
|
||||
// Token: 0x02000389 RID: 905
|
||||
[Token(Token = "0x2000389")]
|
||||
[Serializable]
|
||||
public class SettingsAttributeDictionary : Hashtable
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsAttributeDictionary" /> class.</summary>
|
||||
// Token: 0x060017E7 RID: 6119 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017E7")]
|
||||
[Address(RVA = "0x28ABF30", Offset = "0x28AAD30", VA = "0x1828ABF30")]
|
||||
public SettingsAttributeDictionary()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsAttributeDictionary" /> class.</summary>
|
||||
/// <param name="attributes">A collection of key/value pairs that are related to configuration settings.</param>
|
||||
// Token: 0x060017E8 RID: 6120 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017E8")]
|
||||
[Address(RVA = "0x28ABF00", Offset = "0x28AAD00", VA = "0x1828ABF00")]
|
||||
public SettingsAttributeDictionary(SettingsAttributeDictionary attributes)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,148 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides the base class used to support user property settings.</summary>
|
||||
// Token: 0x02000381 RID: 897
|
||||
[Token(Token = "0x2000381")]
|
||||
public abstract class SettingsBase
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsBase" /> class.</summary>
|
||||
// Token: 0x06001798 RID: 6040 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001798")]
|
||||
[Address(RVA = "0x28ABFF0", Offset = "0x28AADF0", VA = "0x1828ABFF0")]
|
||||
protected SettingsBase()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the associated settings context.</summary>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsContext" /> associated with the settings instance.</returns>
|
||||
// Token: 0x170004FF RID: 1279
|
||||
// (get) Token: 0x06001799 RID: 6041 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170004FF")]
|
||||
public virtual SettingsContext Context
|
||||
{
|
||||
[Token(Token = "0x6001799")]
|
||||
[Address(RVA = "0x28AC020", Offset = "0x28AAE20", VA = "0x1828AC020", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets a value indicating whether access to the object is synchronized (thread safe).</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if access to the <see cref="T:System.Configuration.SettingsBase" /> is synchronized; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x17000500 RID: 1280
|
||||
// (get) Token: 0x0600179A RID: 6042 RVA: 0x0000A5D8 File Offset: 0x000087D8
|
||||
[Token(Token = "0x17000500")]
|
||||
public bool IsSynchronized
|
||||
{
|
||||
[Token(Token = "0x600179A")]
|
||||
[Address(RVA = "0x28AC050", Offset = "0x28AAE50", VA = "0x1828AC050")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the value of the specified settings property.</summary>
|
||||
/// <param name="propertyName">A <see cref="T:System.String" /> containing the name of the property to access.</param>
|
||||
/// <returns>If found, the value of the named settings property.</returns>
|
||||
/// <exception cref="T:System.Configuration.SettingsPropertyNotFoundException">There are no properties associated with the current object, or the specified property could not be found.</exception>
|
||||
/// <exception cref="T:System.Configuration.SettingsPropertyIsReadOnlyException">An attempt was made to set a read-only property.</exception>
|
||||
/// <exception cref="T:System.Configuration.SettingsPropertyWrongTypeException">The value supplied is of a type incompatible with the settings property, during a set operation.</exception>
|
||||
// Token: 0x17000501 RID: 1281
|
||||
[Token(Token = "0x17000501")]
|
||||
public virtual object this[string propertyName]
|
||||
{
|
||||
[Token(Token = "0x600179B")]
|
||||
[Address(RVA = "0x28AC080", Offset = "0x28AAE80", VA = "0x1828AC080", Slot = "5")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x600179C")]
|
||||
[Address(RVA = "0x28AC140", Offset = "0x28AAF40", VA = "0x1828AC140", Slot = "6")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the collection of settings properties.</summary>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsPropertyCollection" /> collection containing all the <see cref="T:System.Configuration.SettingsProperty" /> objects.</returns>
|
||||
// Token: 0x17000502 RID: 1282
|
||||
// (get) Token: 0x0600179D RID: 6045 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000502")]
|
||||
public virtual SettingsPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x600179D")]
|
||||
[Address(RVA = "0x28AC0B0", Offset = "0x28AAEB0", VA = "0x1828AC0B0", Slot = "7")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets a collection of settings property values.</summary>
|
||||
/// <returns>A collection of <see cref="T:System.Configuration.SettingsPropertyValue" /> objects representing the actual data values for the properties managed by the <see cref="T:System.Configuration.SettingsBase" /> instance.</returns>
|
||||
// Token: 0x17000503 RID: 1283
|
||||
// (get) Token: 0x0600179E RID: 6046 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000503")]
|
||||
public virtual SettingsPropertyValueCollection PropertyValues
|
||||
{
|
||||
[Token(Token = "0x600179E")]
|
||||
[Address(RVA = "0x28AC0E0", Offset = "0x28AAEE0", VA = "0x1828AC0E0", Slot = "8")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets a collection of settings providers.</summary>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsProviderCollection" /> containing <see cref="T:System.Configuration.SettingsProvider" /> objects.</returns>
|
||||
// Token: 0x17000504 RID: 1284
|
||||
// (get) Token: 0x0600179F RID: 6047 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000504")]
|
||||
public virtual SettingsProviderCollection Providers
|
||||
{
|
||||
[Token(Token = "0x600179F")]
|
||||
[Address(RVA = "0x28AC110", Offset = "0x28AAF10", VA = "0x1828AC110", Slot = "9")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Initializes internal properties used by <see cref="T:System.Configuration.SettingsBase" /> object.</summary>
|
||||
/// <param name="context">The settings context related to the settings properties.</param>
|
||||
/// <param name="properties">The settings properties that will be accessible from the <see cref="T:System.Configuration.SettingsBase" /> instance.</param>
|
||||
/// <param name="providers">The initialized providers that should be used when loading and saving property values.</param>
|
||||
// Token: 0x060017A0 RID: 6048 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017A0")]
|
||||
[Address(RVA = "0x28ABF60", Offset = "0x28AAD60", VA = "0x1828ABF60")]
|
||||
public void Initialize(SettingsContext context, SettingsPropertyCollection properties, SettingsProviderCollection providers)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Stores the current values of the settings properties.</summary>
|
||||
// Token: 0x060017A1 RID: 6049 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017A1")]
|
||||
[Address(RVA = "0x28ABF90", Offset = "0x28AAD90", VA = "0x1828ABF90", Slot = "10")]
|
||||
public virtual void Save()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Provides a <see cref="T:System.Configuration.SettingsBase" /> class that is synchronized (thread safe).</summary>
|
||||
/// <param name="settingsBase">The class used to support user property settings.</param>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsBase" /> class that is synchronized.</returns>
|
||||
// Token: 0x060017A2 RID: 6050 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60017A2")]
|
||||
[Address(RVA = "0x28ABFC0", Offset = "0x28AADC0", VA = "0x1828ABFC0")]
|
||||
public static SettingsBase Synchronized(SettingsBase settingsBase)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides contextual information that the provider can use when persisting settings.</summary>
|
||||
// Token: 0x02000382 RID: 898
|
||||
[Token(Token = "0x2000382")]
|
||||
[Serializable]
|
||||
public class SettingsContext : Hashtable
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsContext" /> class.</summary>
|
||||
// Token: 0x060017A3 RID: 6051 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017A3")]
|
||||
[Address(RVA = "0x28AC170", Offset = "0x28AAF70", VA = "0x1828AC170")]
|
||||
public SettingsContext()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides a string that describes an individual configuration property. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003CE RID: 974
|
||||
[Token(Token = "0x20003CE")]
|
||||
[AttributeUsage(AttributeTargets.Property)]
|
||||
public sealed class SettingsDescriptionAttribute : Attribute
|
||||
{
|
||||
/// <summary>Initializes an instance of the <see cref="T:System.Configuration.SettingsDescriptionAttribute" /> class.</summary>
|
||||
/// <param name="description">The <see cref="T:System.String" /> used as descriptive text.</param>
|
||||
// Token: 0x06001993 RID: 6547 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001993")]
|
||||
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
|
||||
public SettingsDescriptionAttribute(string description)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the descriptive text for the associated configuration property.</summary>
|
||||
/// <returns>A <see cref="T:System.String" /> containing the descriptive text for the associated configuration property.</returns>
|
||||
// Token: 0x170005BF RID: 1471
|
||||
// (get) Token: 0x06001994 RID: 6548 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005BF")]
|
||||
public string Description
|
||||
{
|
||||
[Token(Token = "0x6001994")]
|
||||
[Address(RVA = "0x28AC1A0", Offset = "0x28AAFA0", VA = "0x1828AC1A0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides a string that describes an application settings property group. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003CF RID: 975
|
||||
[Token(Token = "0x20003CF")]
|
||||
[AttributeUsage(AttributeTargets.Class)]
|
||||
public sealed class SettingsGroupDescriptionAttribute : Attribute
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsGroupDescriptionAttribute" /> class.</summary>
|
||||
/// <param name="description">A <see cref="T:System.String" /> containing the descriptive text for the application settings group.</param>
|
||||
// Token: 0x06001995 RID: 6549 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001995")]
|
||||
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
|
||||
public SettingsGroupDescriptionAttribute(string description)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>The descriptive text for the application settings properties group.</summary>
|
||||
/// <returns>A <see cref="T:System.String" /> containing the descriptive text for the application settings group.</returns>
|
||||
// Token: 0x170005C0 RID: 1472
|
||||
// (get) Token: 0x06001996 RID: 6550 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005C0")]
|
||||
public string Description
|
||||
{
|
||||
[Token(Token = "0x6001996")]
|
||||
[Address(RVA = "0x28AC1D0", Offset = "0x28AAFD0", VA = "0x1828AC1D0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Specifies a name for application settings property group. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003D0 RID: 976
|
||||
[Token(Token = "0x20003D0")]
|
||||
[AttributeUsage(AttributeTargets.Class)]
|
||||
public sealed class SettingsGroupNameAttribute : Attribute
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsGroupNameAttribute" /> class.</summary>
|
||||
/// <param name="groupName">A <see cref="T:System.String" /> containing the name of the application settings property group.</param>
|
||||
// Token: 0x06001997 RID: 6551 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001997")]
|
||||
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
|
||||
public SettingsGroupNameAttribute(string groupName)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the name of the application settings property group.</summary>
|
||||
/// <returns>A <see cref="T:System.String" /> containing the name of the application settings property group.</returns>
|
||||
// Token: 0x170005C1 RID: 1473
|
||||
// (get) Token: 0x06001998 RID: 6552 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005C1")]
|
||||
public string GroupName
|
||||
{
|
||||
[Token(Token = "0x6001998")]
|
||||
[Address(RVA = "0x28AC200", Offset = "0x28AB000", VA = "0x1828AC200")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides data for the <see cref="E:System.Configuration.ApplicationSettingsBase.SettingsLoaded" /> event.</summary>
|
||||
// Token: 0x020003B6 RID: 950
|
||||
[Token(Token = "0x20003B6")]
|
||||
public class SettingsLoadedEventArgs : EventArgs
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsLoadedEventArgs" /> class.</summary>
|
||||
/// <param name="provider">A <see cref="T:System.Configuration.SettingsProvider" /> object from which settings are loaded.</param>
|
||||
// Token: 0x0600192D RID: 6445 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600192D")]
|
||||
[Address(RVA = "0x28AC230", Offset = "0x28AB030", VA = "0x1828AC230")]
|
||||
public SettingsLoadedEventArgs(SettingsProvider provider)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the settings provider used to store configuration settings.</summary>
|
||||
/// <returns>A settings provider.</returns>
|
||||
// Token: 0x170005A0 RID: 1440
|
||||
// (get) Token: 0x0600192E RID: 6446 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005A0")]
|
||||
public SettingsProvider Provider
|
||||
{
|
||||
[Token(Token = "0x600192E")]
|
||||
[Address(RVA = "0x28AC260", Offset = "0x28AB060", VA = "0x1828AC260")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Represents the method that will handle the <see cref="E:System.Configuration.ApplicationSettingsBase.SettingsLoaded" /> event.</summary>
|
||||
/// <param name="sender">The source of the event, typically the settings class.</param>
|
||||
/// <param name="e">A <see cref="T:System.Configuration.SettingsLoadedEventArgs" /> object that contains the event data.</param>
|
||||
// Token: 0x020003B5 RID: 949
|
||||
// (Invoke) Token: 0x0600192A RID: 6442
|
||||
[Token(Token = "0x20003B5")]
|
||||
public delegate void SettingsLoadedEventHandler(object sender, SettingsLoadedEventArgs e);
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides values to indicate which services should be made available to application settings.</summary>
|
||||
// Token: 0x020003D1 RID: 977
|
||||
[Token(Token = "0x20003D1")]
|
||||
public enum SettingsManageability
|
||||
{
|
||||
/// <summary>Enables application settings to be stored in roaming user profiles. For more information about roaming user profiles, see Isolated Storage and Roaming.</summary>
|
||||
// Token: 0x04000EF5 RID: 3829
|
||||
[Token(Token = "0x4000EF5")]
|
||||
Roaming
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Specifies special services for application settings properties. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003D2 RID: 978
|
||||
[Token(Token = "0x20003D2")]
|
||||
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)]
|
||||
public sealed class SettingsManageabilityAttribute : Attribute
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsManageabilityAttribute" /> class.</summary>
|
||||
/// <param name="manageability">A <see cref="T:System.Configuration.SettingsManageability" /> value that enumerates the services being requested.</param>
|
||||
// Token: 0x06001999 RID: 6553 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001999")]
|
||||
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
|
||||
public SettingsManageabilityAttribute(SettingsManageability manageability)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the set of special services that have been requested.</summary>
|
||||
/// <returns>A value that results from using the logical <see langword="OR" /> operator to combine all the <see cref="T:System.Configuration.SettingsManageability" /> enumeration values corresponding to the requested services.</returns>
|
||||
// Token: 0x170005C2 RID: 1474
|
||||
// (get) Token: 0x0600199A RID: 6554 RVA: 0x0000ACC8 File Offset: 0x00008EC8
|
||||
[Token(Token = "0x170005C2")]
|
||||
public SettingsManageability Manageability
|
||||
{
|
||||
[Token(Token = "0x600199A")]
|
||||
[Address(RVA = "0x28AC350", Offset = "0x28AB150", VA = "0x1828AC350")]
|
||||
get
|
||||
{
|
||||
return SettingsManageability.Roaming;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,232 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Used internally as the class that represents metadata about an individual configuration property.</summary>
|
||||
// Token: 0x02000384 RID: 900
|
||||
[Token(Token = "0x2000384")]
|
||||
public class SettingsProperty
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsProperty" /> class, based on the supplied parameter.</summary>
|
||||
/// <param name="propertyToCopy">Specifies a copy of an existing <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
|
||||
// Token: 0x060017B6 RID: 6070 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017B6")]
|
||||
[Address(RVA = "0x28ACDD0", Offset = "0x28ABBD0", VA = "0x1828ACDD0")]
|
||||
public SettingsProperty(SettingsProperty propertyToCopy)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsProperty" /> class. based on the supplied parameter.</summary>
|
||||
/// <param name="name">Specifies the name of an existing <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
|
||||
// Token: 0x060017B7 RID: 6071 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017B7")]
|
||||
[Address(RVA = "0x28ACE00", Offset = "0x28ABC00", VA = "0x1828ACE00")]
|
||||
public SettingsProperty(string name)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Creates a new instance of the <see cref="T:System.Configuration.SettingsProperty" /> class based on the supplied parameters.</summary>
|
||||
/// <param name="name">The name of the <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
|
||||
/// <param name="propertyType">The type of <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
|
||||
/// <param name="provider">A <see cref="T:System.Configuration.SettingsProvider" /> object to use for persistence.</param>
|
||||
/// <param name="isReadOnly">A <see cref="T:System.Boolean" /> value specifying whether the <see cref="T:System.Configuration.SettingsProperty" /> object is read-only.</param>
|
||||
/// <param name="defaultValue">The default value of the <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
|
||||
/// <param name="serializeAs">A <see cref="T:System.Configuration.SettingsSerializeAs" /> object. This object is an enumeration used to set the serialization scheme for storing application settings.</param>
|
||||
/// <param name="attributes">A <see cref="T:System.Configuration.SettingsAttributeDictionary" /> object.</param>
|
||||
/// <param name="throwOnErrorDeserializing">A Boolean value specifying whether an error will be thrown when the property is unsuccessfully deserialized.</param>
|
||||
/// <param name="throwOnErrorSerializing">A Boolean value specifying whether an error will be thrown when the property is unsuccessfully serialized.</param>
|
||||
// Token: 0x060017B8 RID: 6072 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017B8")]
|
||||
[Address(RVA = "0x28ACDA0", Offset = "0x28ABBA0", VA = "0x1828ACDA0")]
|
||||
public SettingsProperty(string name, Type propertyType, SettingsProvider provider, bool isReadOnly, object defaultValue, SettingsSerializeAs serializeAs, SettingsAttributeDictionary attributes, bool throwOnErrorDeserializing, bool throwOnErrorSerializing)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets a <see cref="T:System.Configuration.SettingsAttributeDictionary" /> object containing the attributes of the <see cref="T:System.Configuration.SettingsProperty" /> object.</summary>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsAttributeDictionary" /> object.</returns>
|
||||
// Token: 0x17000509 RID: 1289
|
||||
// (get) Token: 0x060017B9 RID: 6073 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000509")]
|
||||
public virtual SettingsAttributeDictionary Attributes
|
||||
{
|
||||
[Token(Token = "0x60017B9")]
|
||||
[Address(RVA = "0x28ACE30", Offset = "0x28ABC30", VA = "0x1828ACE30", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the default value of the <see cref="T:System.Configuration.SettingsProperty" /> object.</summary>
|
||||
/// <returns>An object containing the default value of the <see cref="T:System.Configuration.SettingsProperty" /> object.</returns>
|
||||
// Token: 0x1700050A RID: 1290
|
||||
// (get) Token: 0x060017BA RID: 6074 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060017BB RID: 6075 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700050A")]
|
||||
public virtual object DefaultValue
|
||||
{
|
||||
[Token(Token = "0x60017BA")]
|
||||
[Address(RVA = "0x28ACE60", Offset = "0x28ABC60", VA = "0x1828ACE60", Slot = "5")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60017BB")]
|
||||
[Address(RVA = "0x28ACFE0", Offset = "0x28ABDE0", VA = "0x1828ACFE0", Slot = "6")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a value specifying whether a <see cref="T:System.Configuration.SettingsProperty" /> object is read-only.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the <see cref="T:System.Configuration.SettingsProperty" /> is read-only; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x1700050B RID: 1291
|
||||
// (get) Token: 0x060017BC RID: 6076 RVA: 0x0000A620 File Offset: 0x00008820
|
||||
// (set) Token: 0x060017BD RID: 6077 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700050B")]
|
||||
public virtual bool IsReadOnly
|
||||
{
|
||||
[Token(Token = "0x60017BC")]
|
||||
[Address(RVA = "0x28ACE90", Offset = "0x28ABC90", VA = "0x1828ACE90", Slot = "7")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x60017BD")]
|
||||
[Address(RVA = "0x28AD010", Offset = "0x28ABE10", VA = "0x1828AD010", Slot = "8")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the name of the <see cref="T:System.Configuration.SettingsProperty" />.</summary>
|
||||
/// <returns>The name of the <see cref="T:System.Configuration.SettingsProperty" />.</returns>
|
||||
// Token: 0x1700050C RID: 1292
|
||||
// (get) Token: 0x060017BE RID: 6078 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060017BF RID: 6079 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700050C")]
|
||||
public virtual string Name
|
||||
{
|
||||
[Token(Token = "0x60017BE")]
|
||||
[Address(RVA = "0x28ACEC0", Offset = "0x28ABCC0", VA = "0x1828ACEC0", Slot = "9")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60017BF")]
|
||||
[Address(RVA = "0x28AD040", Offset = "0x28ABE40", VA = "0x1828AD040", Slot = "10")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the type for the <see cref="T:System.Configuration.SettingsProperty" />.</summary>
|
||||
/// <returns>The type for the <see cref="T:System.Configuration.SettingsProperty" />.</returns>
|
||||
// Token: 0x1700050D RID: 1293
|
||||
// (get) Token: 0x060017C0 RID: 6080 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060017C1 RID: 6081 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700050D")]
|
||||
public virtual Type PropertyType
|
||||
{
|
||||
[Token(Token = "0x60017C0")]
|
||||
[Address(RVA = "0x28ACEF0", Offset = "0x28ABCF0", VA = "0x1828ACEF0", Slot = "11")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60017C1")]
|
||||
[Address(RVA = "0x28AD070", Offset = "0x28ABE70", VA = "0x1828AD070", Slot = "12")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the provider for the <see cref="T:System.Configuration.SettingsProperty" />.</summary>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsProvider" /> object.</returns>
|
||||
// Token: 0x1700050E RID: 1294
|
||||
// (get) Token: 0x060017C2 RID: 6082 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060017C3 RID: 6083 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700050E")]
|
||||
public virtual SettingsProvider Provider
|
||||
{
|
||||
[Token(Token = "0x60017C2")]
|
||||
[Address(RVA = "0x28ACF20", Offset = "0x28ABD20", VA = "0x1828ACF20", Slot = "13")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60017C3")]
|
||||
[Address(RVA = "0x28AD0A0", Offset = "0x28ABEA0", VA = "0x1828AD0A0", Slot = "14")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a <see cref="T:System.Configuration.SettingsSerializeAs" /> object for the <see cref="T:System.Configuration.SettingsProperty" />.</summary>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsSerializeAs" /> object.</returns>
|
||||
// Token: 0x1700050F RID: 1295
|
||||
// (get) Token: 0x060017C4 RID: 6084 RVA: 0x0000A638 File Offset: 0x00008838
|
||||
// (set) Token: 0x060017C5 RID: 6085 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700050F")]
|
||||
public virtual SettingsSerializeAs SerializeAs
|
||||
{
|
||||
[Token(Token = "0x60017C4")]
|
||||
[Address(RVA = "0x28ACF50", Offset = "0x28ABD50", VA = "0x1828ACF50", Slot = "15")]
|
||||
get
|
||||
{
|
||||
return SettingsSerializeAs.String;
|
||||
}
|
||||
[Token(Token = "0x60017C5")]
|
||||
[Address(RVA = "0x28AD0D0", Offset = "0x28ABED0", VA = "0x1828AD0D0", Slot = "16")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a value specifying whether an error will be thrown when the property is unsuccessfully deserialized.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the error will be thrown when the property is unsuccessfully deserialized; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x17000510 RID: 1296
|
||||
// (get) Token: 0x060017C6 RID: 6086 RVA: 0x0000A650 File Offset: 0x00008850
|
||||
// (set) Token: 0x060017C7 RID: 6087 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000510")]
|
||||
public bool ThrowOnErrorDeserializing
|
||||
{
|
||||
[Token(Token = "0x60017C6")]
|
||||
[Address(RVA = "0x28ACF80", Offset = "0x28ABD80", VA = "0x1828ACF80")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x60017C7")]
|
||||
[Address(RVA = "0x28AD100", Offset = "0x28ABF00", VA = "0x1828AD100")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a value specifying whether an error will be thrown when the property is unsuccessfully serialized.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the error will be thrown when the property is unsuccessfully serialized; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x17000511 RID: 1297
|
||||
// (get) Token: 0x060017C8 RID: 6088 RVA: 0x0000A668 File Offset: 0x00008868
|
||||
// (set) Token: 0x060017C9 RID: 6089 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000511")]
|
||||
public bool ThrowOnErrorSerializing
|
||||
{
|
||||
[Token(Token = "0x60017C8")]
|
||||
[Address(RVA = "0x28ACFB0", Offset = "0x28ABDB0", VA = "0x1828ACFB0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x60017C9")]
|
||||
[Address(RVA = "0x28AD130", Offset = "0x28ABF30", VA = "0x1828AD130")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,200 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Contains a collection of <see cref="T:System.Configuration.SettingsProperty" /> objects.</summary>
|
||||
// Token: 0x02000383 RID: 899
|
||||
[Token(Token = "0x2000383")]
|
||||
public class SettingsPropertyCollection : ICollection, IEnumerable, ICloneable
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyCollection" /> class.</summary>
|
||||
// Token: 0x060017A4 RID: 6052 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017A4")]
|
||||
[Address(RVA = "0x28AC5F0", Offset = "0x28AB3F0", VA = "0x1828AC5F0")]
|
||||
public SettingsPropertyCollection()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets a value that specifies the number of <see cref="T:System.Configuration.SettingsProperty" /> objects in the collection.</summary>
|
||||
/// <returns>The number of <see cref="T:System.Configuration.SettingsProperty" /> objects in the collection.</returns>
|
||||
// Token: 0x17000505 RID: 1285
|
||||
// (get) Token: 0x060017A5 RID: 6053 RVA: 0x0000A5F0 File Offset: 0x000087F0
|
||||
[Token(Token = "0x17000505")]
|
||||
public int Count
|
||||
{
|
||||
[Token(Token = "0x60017A5")]
|
||||
[Address(RVA = "0x28AC620", Offset = "0x28AB420", VA = "0x1828AC620", Slot = "5")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets a value that indicates whether access to the collection is synchronized (thread safe).</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if access to the <see cref="T:System.Configuration.SettingsPropertyCollection" /> is synchronized; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x17000506 RID: 1286
|
||||
// (get) Token: 0x060017A6 RID: 6054 RVA: 0x0000A608 File Offset: 0x00008808
|
||||
[Token(Token = "0x17000506")]
|
||||
public bool IsSynchronized
|
||||
{
|
||||
[Token(Token = "0x60017A6")]
|
||||
[Address(RVA = "0x28AC650", Offset = "0x28AB450", VA = "0x1828AC650", Slot = "7")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the collection item with the specified name.</summary>
|
||||
/// <param name="name">The name of the <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
|
||||
/// <returns>The <see cref="T:System.Configuration.SettingsProperty" /> object with the specified <paramref name="name" />.</returns>
|
||||
// Token: 0x17000507 RID: 1287
|
||||
[Token(Token = "0x17000507")]
|
||||
public SettingsProperty this[string name]
|
||||
{
|
||||
[Token(Token = "0x60017A7")]
|
||||
[Address(RVA = "0x28AC680", Offset = "0x28AB480", VA = "0x1828AC680")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the object to synchronize access to the collection.</summary>
|
||||
/// <returns>The object to synchronize access to the collection.</returns>
|
||||
// Token: 0x17000508 RID: 1288
|
||||
// (get) Token: 0x060017A8 RID: 6056 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000508")]
|
||||
public object SyncRoot
|
||||
{
|
||||
[Token(Token = "0x60017A8")]
|
||||
[Address(RVA = "0x28AC6B0", Offset = "0x28AB4B0", VA = "0x1828AC6B0", Slot = "6")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Adds a <see cref="T:System.Configuration.SettingsProperty" /> object to the collection.</summary>
|
||||
/// <param name="property">A <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
|
||||
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
|
||||
// Token: 0x060017A9 RID: 6057 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017A9")]
|
||||
[Address(RVA = "0x28AC380", Offset = "0x28AB180", VA = "0x1828AC380")]
|
||||
public void Add(SettingsProperty property)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Removes all <see cref="T:System.Configuration.SettingsProperty" /> objects from the collection.</summary>
|
||||
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
|
||||
// Token: 0x060017AA RID: 6058 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017AA")]
|
||||
[Address(RVA = "0x28AC3B0", Offset = "0x28AB1B0", VA = "0x1828AC3B0")]
|
||||
public void Clear()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Creates a copy of the existing collection.</summary>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsPropertyCollection" /> class.</returns>
|
||||
// Token: 0x060017AB RID: 6059 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60017AB")]
|
||||
[Address(RVA = "0x28AC3E0", Offset = "0x28AB1E0", VA = "0x1828AC3E0", Slot = "9")]
|
||||
public object Clone()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Copies this <see cref="T:System.Configuration.SettingsPropertyCollection" /> object to an array.</summary>
|
||||
/// <param name="array">The array to copy the object to.</param>
|
||||
/// <param name="index">The index at which to begin copying.</param>
|
||||
// Token: 0x060017AC RID: 6060 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017AC")]
|
||||
[Address(RVA = "0x28AC410", Offset = "0x28AB210", VA = "0x1828AC410", Slot = "4")]
|
||||
public void CopyTo(Array array, int index)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the <see cref="T:System.Collections.IEnumerator" /> object as it applies to the collection.</summary>
|
||||
/// <returns>The <see cref="T:System.Collections.IEnumerator" /> object as it applies to the collection.</returns>
|
||||
// Token: 0x060017AD RID: 6061 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60017AD")]
|
||||
[Address(RVA = "0x28AC440", Offset = "0x28AB240", VA = "0x1828AC440", Slot = "8")]
|
||||
public IEnumerator GetEnumerator()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Performs additional, custom processing when adding to the contents of the <see cref="T:System.Configuration.SettingsPropertyCollection" /> instance.</summary>
|
||||
/// <param name="property">A <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
|
||||
// Token: 0x060017AE RID: 6062 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017AE")]
|
||||
[Address(RVA = "0x28AC4A0", Offset = "0x28AB2A0", VA = "0x1828AC4A0", Slot = "10")]
|
||||
protected virtual void OnAdd(SettingsProperty property)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Performs additional, custom processing after adding to the contents of the <see cref="T:System.Configuration.SettingsPropertyCollection" /> instance.</summary>
|
||||
/// <param name="property">A <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
|
||||
// Token: 0x060017AF RID: 6063 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017AF")]
|
||||
[Address(RVA = "0x28AC470", Offset = "0x28AB270", VA = "0x1828AC470", Slot = "11")]
|
||||
protected virtual void OnAddComplete(SettingsProperty property)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Performs additional, custom processing when clearing the contents of the <see cref="T:System.Configuration.SettingsPropertyCollection" /> instance.</summary>
|
||||
// Token: 0x060017B0 RID: 6064 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017B0")]
|
||||
[Address(RVA = "0x28AC500", Offset = "0x28AB300", VA = "0x1828AC500", Slot = "12")]
|
||||
protected virtual void OnClear()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Performs additional, custom processing after clearing the contents of the <see cref="T:System.Configuration.SettingsPropertyCollection" /> instance.</summary>
|
||||
// Token: 0x060017B1 RID: 6065 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017B1")]
|
||||
[Address(RVA = "0x28AC4D0", Offset = "0x28AB2D0", VA = "0x1828AC4D0", Slot = "13")]
|
||||
protected virtual void OnClearComplete()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Performs additional, custom processing when removing the contents of the <see cref="T:System.Configuration.SettingsPropertyCollection" /> instance.</summary>
|
||||
/// <param name="property">A <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
|
||||
// Token: 0x060017B2 RID: 6066 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017B2")]
|
||||
[Address(RVA = "0x28AC560", Offset = "0x28AB360", VA = "0x1828AC560", Slot = "14")]
|
||||
protected virtual void OnRemove(SettingsProperty property)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Performs additional, custom processing after removing the contents of the <see cref="T:System.Configuration.SettingsPropertyCollection" /> instance.</summary>
|
||||
/// <param name="property">A <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
|
||||
// Token: 0x060017B3 RID: 6067 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017B3")]
|
||||
[Address(RVA = "0x28AC530", Offset = "0x28AB330", VA = "0x1828AC530", Slot = "15")]
|
||||
protected virtual void OnRemoveComplete(SettingsProperty property)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Removes a <see cref="T:System.Configuration.SettingsProperty" /> object from the collection.</summary>
|
||||
/// <param name="name">The name of the <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
|
||||
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
|
||||
// Token: 0x060017B4 RID: 6068 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017B4")]
|
||||
[Address(RVA = "0x28AC590", Offset = "0x28AB390", VA = "0x1828AC590")]
|
||||
public void Remove(string name)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Sets the collection to be read-only.</summary>
|
||||
// Token: 0x060017B5 RID: 6069 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017B5")]
|
||||
[Address(RVA = "0x28AC5C0", Offset = "0x28AB3C0", VA = "0x1828AC5C0")]
|
||||
public void SetReadOnly()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides an exception for read-only <see cref="T:System.Configuration.SettingsProperty" /> objects.</summary>
|
||||
// Token: 0x020003D3 RID: 979
|
||||
[Token(Token = "0x20003D3")]
|
||||
[Serializable]
|
||||
public class SettingsPropertyIsReadOnlyException : Exception
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyIsReadOnlyException" /> class.</summary>
|
||||
// Token: 0x0600199B RID: 6555 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600199B")]
|
||||
[Address(RVA = "0x28AC710", Offset = "0x28AB510", VA = "0x1828AC710")]
|
||||
public SettingsPropertyIsReadOnlyException()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyIsReadOnlyException" /> class based on the supplied parameters.</summary>
|
||||
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized object data about the exception being thrown.</param>
|
||||
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains contextual information about the source or destination of the serialized stream.</param>
|
||||
// Token: 0x0600199C RID: 6556 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600199C")]
|
||||
[Address(RVA = "0x28AC740", Offset = "0x28AB540", VA = "0x1828AC740")]
|
||||
protected SettingsPropertyIsReadOnlyException(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyIsReadOnlyException" /> class based on a supplied parameter.</summary>
|
||||
/// <param name="message">A string containing an exception message.</param>
|
||||
// Token: 0x0600199D RID: 6557 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600199D")]
|
||||
[Address(RVA = "0x28AC770", Offset = "0x28AB570", VA = "0x1828AC770")]
|
||||
public SettingsPropertyIsReadOnlyException(string message)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyIsReadOnlyException" /> class based on supplied parameters.</summary>
|
||||
/// <param name="message">A string containing an exception message.</param>
|
||||
/// <param name="innerException">The exception that is the cause of the current exception.</param>
|
||||
// Token: 0x0600199E RID: 6558 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600199E")]
|
||||
[Address(RVA = "0x28AC6E0", Offset = "0x28AB4E0", VA = "0x1828AC6E0")]
|
||||
public SettingsPropertyIsReadOnlyException(string message, Exception innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides an exception for <see cref="T:System.Configuration.SettingsProperty" /> objects that are not found.</summary>
|
||||
// Token: 0x020003D4 RID: 980
|
||||
[Token(Token = "0x20003D4")]
|
||||
[Serializable]
|
||||
public class SettingsPropertyNotFoundException : Exception
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyNotFoundException" /> class.</summary>
|
||||
// Token: 0x0600199F RID: 6559 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600199F")]
|
||||
[Address(RVA = "0x28AC7A0", Offset = "0x28AB5A0", VA = "0x1828AC7A0")]
|
||||
public SettingsPropertyNotFoundException()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyNotFoundException" /> class, based on supplied parameters.</summary>
|
||||
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized object data about the exception being thrown.</param>
|
||||
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains contextual information about the source or destination of the serialized stream.</param>
|
||||
// Token: 0x060019A0 RID: 6560 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60019A0")]
|
||||
[Address(RVA = "0x28AC7D0", Offset = "0x28AB5D0", VA = "0x1828AC7D0")]
|
||||
protected SettingsPropertyNotFoundException(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyNotFoundException" /> class, based on a supplied parameter.</summary>
|
||||
/// <param name="message">A string containing an exception message.</param>
|
||||
// Token: 0x060019A1 RID: 6561 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60019A1")]
|
||||
[Address(RVA = "0x28AC830", Offset = "0x28AB630", VA = "0x1828AC830")]
|
||||
public SettingsPropertyNotFoundException(string message)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyNotFoundException" /> class, based on supplied parameters.</summary>
|
||||
/// <param name="message">A string containing an exception message.</param>
|
||||
/// <param name="innerException">The exception that is the cause of the current exception.</param>
|
||||
// Token: 0x060019A2 RID: 6562 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60019A2")]
|
||||
[Address(RVA = "0x28AC800", Offset = "0x28AB600", VA = "0x1828AC800")]
|
||||
public SettingsPropertyNotFoundException(string message, Exception innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,157 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Contains the value of a settings property that can be loaded and stored by an instance of <see cref="T:System.Configuration.SettingsBase" />.</summary>
|
||||
// Token: 0x02000387 RID: 903
|
||||
[Token(Token = "0x2000387")]
|
||||
public class SettingsPropertyValue
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyValue" /> class, based on supplied parameters.</summary>
|
||||
/// <param name="property">Specifies a <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
|
||||
// Token: 0x060017DB RID: 6107 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017DB")]
|
||||
[Address(RVA = "0x28ACAA0", Offset = "0x28AB8A0", VA = "0x1828ACAA0")]
|
||||
public SettingsPropertyValue(SettingsProperty property)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets whether the value of a <see cref="T:System.Configuration.SettingsProperty" /> object has been deserialized.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the value of a <see cref="T:System.Configuration.SettingsProperty" /> object has been deserialized; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x17000517 RID: 1303
|
||||
// (get) Token: 0x060017DC RID: 6108 RVA: 0x0000A6B0 File Offset: 0x000088B0
|
||||
// (set) Token: 0x060017DD RID: 6109 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000517")]
|
||||
public bool Deserialized
|
||||
{
|
||||
[Token(Token = "0x60017DC")]
|
||||
[Address(RVA = "0x28ACAD0", Offset = "0x28AB8D0", VA = "0x1828ACAD0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x60017DD")]
|
||||
[Address(RVA = "0x28ACC20", Offset = "0x28ABA20", VA = "0x1828ACC20")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets whether the value of a <see cref="T:System.Configuration.SettingsProperty" /> object has changed.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the value of a <see cref="T:System.Configuration.SettingsProperty" /> object has changed; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x17000518 RID: 1304
|
||||
// (get) Token: 0x060017DE RID: 6110 RVA: 0x0000A6C8 File Offset: 0x000088C8
|
||||
// (set) Token: 0x060017DF RID: 6111 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000518")]
|
||||
public bool IsDirty
|
||||
{
|
||||
[Token(Token = "0x60017DE")]
|
||||
[Address(RVA = "0x28ACB00", Offset = "0x28AB900", VA = "0x1828ACB00")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x60017DF")]
|
||||
[Address(RVA = "0x28ACC50", Offset = "0x28ABA50", VA = "0x1828ACC50")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the name of the property from the associated <see cref="T:System.Configuration.SettingsProperty" /> object.</summary>
|
||||
/// <returns>The name of the <see cref="T:System.Configuration.SettingsProperty" /> object.</returns>
|
||||
// Token: 0x17000519 RID: 1305
|
||||
// (get) Token: 0x060017E0 RID: 6112 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000519")]
|
||||
public string Name
|
||||
{
|
||||
[Token(Token = "0x60017E0")]
|
||||
[Address(RVA = "0x28ACB30", Offset = "0x28AB930", VA = "0x1828ACB30")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the <see cref="T:System.Configuration.SettingsProperty" /> object.</summary>
|
||||
/// <returns>The <see cref="T:System.Configuration.SettingsProperty" /> object that describes the <see cref="T:System.Configuration.SettingsPropertyValue" /> object.</returns>
|
||||
// Token: 0x1700051A RID: 1306
|
||||
// (get) Token: 0x060017E1 RID: 6113 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700051A")]
|
||||
public SettingsProperty Property
|
||||
{
|
||||
[Token(Token = "0x60017E1")]
|
||||
[Address(RVA = "0x28ACB90", Offset = "0x28AB990", VA = "0x1828ACB90")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the value of the <see cref="T:System.Configuration.SettingsProperty" /> object.</summary>
|
||||
/// <returns>The value of the <see cref="T:System.Configuration.SettingsProperty" /> object. When this value is set, the <see cref="P:System.Configuration.SettingsPropertyValue.IsDirty" /> property is set to <see langword="true" /> and <see cref="P:System.Configuration.SettingsPropertyValue.UsingDefaultValue" /> is set to <see langword="false" />.
|
||||
/// When a value is first accessed from the <see cref="P:System.Configuration.SettingsPropertyValue.PropertyValue" /> property, and if the value was initially stored into the <see cref="T:System.Configuration.SettingsPropertyValue" /> object as a serialized representation using the <see cref="P:System.Configuration.SettingsPropertyValue.SerializedValue" /> property, the <see cref="P:System.Configuration.SettingsPropertyValue.PropertyValue" /> property will trigger deserialization of the underlying value. As a side effect, the <see cref="P:System.Configuration.SettingsPropertyValue.Deserialized" /> property will be set to <see langword="true" />.
|
||||
/// If this chain of events occurs in ASP.NET, and if an error occurs during the deserialization process, the error is logged using the health-monitoring feature of ASP.NET. By default, this means that deserialization errors will show up in the Application Event Log when running under ASP.NET. If this process occurs outside of ASP.NET, and if an error occurs during deserialization, the error is suppressed, and the remainder of the logic during deserialization occurs. If there is no serialized value to deserialize when the deserialization is attempted, then <see cref="T:System.Configuration.SettingsPropertyValue" /> object will instead attempt to return a default value if one was configured as defined on the associated <see cref="T:System.Configuration.SettingsProperty" /> instance. In this case, if the <see cref="P:System.Configuration.SettingsProperty.DefaultValue" /> property was set to either <see langword="null" />, or to the string "[null]", then the <see cref="T:System.Configuration.SettingsPropertyValue" /> object will initialize the <see cref="P:System.Configuration.SettingsPropertyValue.PropertyValue" /> property to either <see langword="null" /> for reference types, or to the default value for the associated value type. On the other hand, if <see cref="P:System.Configuration.SettingsProperty.DefaultValue" /> property holds a valid object reference or string value (other than "[null]"), then the <see cref="P:System.Configuration.SettingsProperty.DefaultValue" /> property is returned instead.
|
||||
/// If there is no serialized value to deserialize when the deserialization is attempted, and no default value was specified, then an empty string will be returned for string types. For all other types, a default instance will be returned by calling <see cref="M:System.Activator.CreateInstance(System.Type)" /> - for reference types this means an attempt will be made to create an object instance using the default constructor. If this attempt fails, then <see langword="null" /> is returned.</returns>
|
||||
/// <exception cref="T:System.ArgumentException">While attempting to use the default value from the <see cref="P:System.Configuration.SettingsProperty.DefaultValue" /> property, an error occurred. Either the attempt to convert <see cref="P:System.Configuration.SettingsProperty.DefaultValue" /> property to a valid type failed, or the resulting value was not compatible with the type defined by <see cref="P:System.Configuration.SettingsProperty.PropertyType" />.</exception>
|
||||
// Token: 0x1700051B RID: 1307
|
||||
// (get) Token: 0x060017E2 RID: 6114 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060017E3 RID: 6115 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700051B")]
|
||||
public object PropertyValue
|
||||
{
|
||||
[Token(Token = "0x60017E2")]
|
||||
[Address(RVA = "0x28ACB60", Offset = "0x28AB960", VA = "0x1828ACB60")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60017E3")]
|
||||
[Address(RVA = "0x28ACC80", Offset = "0x28ABA80", VA = "0x1828ACC80")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the serialized value of the <see cref="T:System.Configuration.SettingsProperty" /> object.</summary>
|
||||
/// <returns>The serialized value of a <see cref="T:System.Configuration.SettingsProperty" /> object.</returns>
|
||||
/// <exception cref="T:System.ArgumentException">The serialization options for the property indicated the use of a string type converter, but a type converter was not available.</exception>
|
||||
// Token: 0x1700051C RID: 1308
|
||||
// (get) Token: 0x060017E4 RID: 6116 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060017E5 RID: 6117 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700051C")]
|
||||
public object SerializedValue
|
||||
{
|
||||
[Token(Token = "0x60017E4")]
|
||||
[Address(RVA = "0x28ACBC0", Offset = "0x28AB9C0", VA = "0x1828ACBC0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60017E5")]
|
||||
[Address(RVA = "0x28ACCB0", Offset = "0x28ABAB0", VA = "0x1828ACCB0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets a Boolean value specifying whether the value of the <see cref="T:System.Configuration.SettingsPropertyValue" /> object is the default value as defined by the <see cref="P:System.Configuration.SettingsProperty.DefaultValue" /> property value on the associated <see cref="T:System.Configuration.SettingsProperty" /> object.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the value of the <see cref="T:System.Configuration.SettingsProperty" /> object is the default value; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x1700051D RID: 1309
|
||||
// (get) Token: 0x060017E6 RID: 6118 RVA: 0x0000A6E0 File Offset: 0x000088E0
|
||||
[Token(Token = "0x1700051D")]
|
||||
public bool UsingDefaultValue
|
||||
{
|
||||
[Token(Token = "0x60017E6")]
|
||||
[Address(RVA = "0x28ACBF0", Offset = "0x28AB9F0", VA = "0x1828ACBF0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,147 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Contains a collection of settings property values that map <see cref="T:System.Configuration.SettingsProperty" /> objects to <see cref="T:System.Configuration.SettingsPropertyValue" /> objects.</summary>
|
||||
// Token: 0x02000386 RID: 902
|
||||
[Token(Token = "0x2000386")]
|
||||
public class SettingsPropertyValueCollection : ICollection, IEnumerable, ICloneable
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyValueCollection" /> class.</summary>
|
||||
// Token: 0x060017CF RID: 6095 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017CF")]
|
||||
[Address(RVA = "0x28AC9B0", Offset = "0x28AB7B0", VA = "0x1828AC9B0")]
|
||||
public SettingsPropertyValueCollection()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets a value that specifies the number of <see cref="T:System.Configuration.SettingsPropertyValue" /> objects in the collection.</summary>
|
||||
/// <returns>The number of <see cref="T:System.Configuration.SettingsPropertyValue" /> objects in the collection.</returns>
|
||||
// Token: 0x17000513 RID: 1299
|
||||
// (get) Token: 0x060017D0 RID: 6096 RVA: 0x0000A680 File Offset: 0x00008880
|
||||
[Token(Token = "0x17000513")]
|
||||
public int Count
|
||||
{
|
||||
[Token(Token = "0x60017D0")]
|
||||
[Address(RVA = "0x28AC9E0", Offset = "0x28AB7E0", VA = "0x1828AC9E0", Slot = "5")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets a value that indicates whether access to the collection is synchronized (thread safe).</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if access to the <see cref="T:System.Configuration.SettingsPropertyValueCollection" /> collection is synchronized; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x17000514 RID: 1300
|
||||
// (get) Token: 0x060017D1 RID: 6097 RVA: 0x0000A698 File Offset: 0x00008898
|
||||
[Token(Token = "0x17000514")]
|
||||
public bool IsSynchronized
|
||||
{
|
||||
[Token(Token = "0x60017D1")]
|
||||
[Address(RVA = "0x28ACA10", Offset = "0x28AB810", VA = "0x1828ACA10", Slot = "7")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets an item from the collection.</summary>
|
||||
/// <param name="name">A <see cref="T:System.Configuration.SettingsPropertyValue" /> object.</param>
|
||||
/// <returns>The <see cref="T:System.Configuration.SettingsPropertyValue" /> object with the specified <paramref name="name" />.</returns>
|
||||
// Token: 0x17000515 RID: 1301
|
||||
[Token(Token = "0x17000515")]
|
||||
public SettingsPropertyValue this[string name]
|
||||
{
|
||||
[Token(Token = "0x60017D2")]
|
||||
[Address(RVA = "0x28ACA40", Offset = "0x28AB840", VA = "0x1828ACA40")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the object to synchronize access to the collection.</summary>
|
||||
/// <returns>The object to synchronize access to the collection.</returns>
|
||||
// Token: 0x17000516 RID: 1302
|
||||
// (get) Token: 0x060017D3 RID: 6099 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000516")]
|
||||
public object SyncRoot
|
||||
{
|
||||
[Token(Token = "0x60017D3")]
|
||||
[Address(RVA = "0x28ACA70", Offset = "0x28AB870", VA = "0x1828ACA70", Slot = "6")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Adds a <see cref="T:System.Configuration.SettingsPropertyValue" /> object to the collection.</summary>
|
||||
/// <param name="property">A <see cref="T:System.Configuration.SettingsPropertyValue" /> object.</param>
|
||||
/// <exception cref="T:System.NotSupportedException">An attempt was made to add an item to the collection, but the collection was marked as read-only.</exception>
|
||||
// Token: 0x060017D4 RID: 6100 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017D4")]
|
||||
[Address(RVA = "0x28AC860", Offset = "0x28AB660", VA = "0x1828AC860")]
|
||||
public void Add(SettingsPropertyValue property)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Removes all <see cref="T:System.Configuration.SettingsPropertyValue" /> objects from the collection.</summary>
|
||||
// Token: 0x060017D5 RID: 6101 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017D5")]
|
||||
[Address(RVA = "0x28AC890", Offset = "0x28AB690", VA = "0x1828AC890")]
|
||||
public void Clear()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Creates a copy of the existing collection.</summary>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsPropertyValueCollection" /> class.</returns>
|
||||
// Token: 0x060017D6 RID: 6102 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60017D6")]
|
||||
[Address(RVA = "0x28AC8C0", Offset = "0x28AB6C0", VA = "0x1828AC8C0", Slot = "9")]
|
||||
public object Clone()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Copies this <see cref="T:System.Configuration.SettingsPropertyValueCollection" /> collection to an array.</summary>
|
||||
/// <param name="array">The array to copy the collection to.</param>
|
||||
/// <param name="index">The index at which to begin copying.</param>
|
||||
// Token: 0x060017D7 RID: 6103 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017D7")]
|
||||
[Address(RVA = "0x28AC8F0", Offset = "0x28AB6F0", VA = "0x1828AC8F0", Slot = "4")]
|
||||
public void CopyTo(Array array, int index)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the <see cref="T:System.Collections.IEnumerator" /> object as it applies to the collection.</summary>
|
||||
/// <returns>The <see cref="T:System.Collections.IEnumerator" /> object as it applies to the collection.</returns>
|
||||
// Token: 0x060017D8 RID: 6104 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60017D8")]
|
||||
[Address(RVA = "0x28AC920", Offset = "0x28AB720", VA = "0x1828AC920", Slot = "8")]
|
||||
public IEnumerator GetEnumerator()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Removes a <see cref="T:System.Configuration.SettingsPropertyValue" /> object from the collection.</summary>
|
||||
/// <param name="name">The name of the <see cref="T:System.Configuration.SettingsPropertyValue" /> object.</param>
|
||||
/// <exception cref="T:System.NotSupportedException">An attempt was made to remove an item from the collection, but the collection was marked as read-only.</exception>
|
||||
// Token: 0x060017D9 RID: 6105 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017D9")]
|
||||
[Address(RVA = "0x28AC950", Offset = "0x28AB750", VA = "0x1828AC950")]
|
||||
public void Remove(string name)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Sets the collection to be read-only.</summary>
|
||||
// Token: 0x060017DA RID: 6106 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017DA")]
|
||||
[Address(RVA = "0x28AC980", Offset = "0x28AB780", VA = "0x1828AC980")]
|
||||
public void SetReadOnly()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Provides an exception that is thrown when an invalid type is used with a <see cref="T:System.Configuration.SettingsProperty" /> object.</summary>
|
||||
// Token: 0x020003D5 RID: 981
|
||||
[Token(Token = "0x20003D5")]
|
||||
[Serializable]
|
||||
public class SettingsPropertyWrongTypeException : Exception
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyWrongTypeException" /> class.</summary>
|
||||
// Token: 0x060019A3 RID: 6563 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60019A3")]
|
||||
[Address(RVA = "0x28ACD70", Offset = "0x28ABB70", VA = "0x1828ACD70")]
|
||||
public SettingsPropertyWrongTypeException()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyWrongTypeException" /> class based on the supplied parameters.</summary>
|
||||
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
|
||||
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination of the serialized stream.</param>
|
||||
// Token: 0x060019A4 RID: 6564 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60019A4")]
|
||||
[Address(RVA = "0x28ACD40", Offset = "0x28ABB40", VA = "0x1828ACD40")]
|
||||
protected SettingsPropertyWrongTypeException(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyWrongTypeException" /> class based on the supplied parameter.</summary>
|
||||
/// <param name="message">A string containing an exception message.</param>
|
||||
// Token: 0x060019A5 RID: 6565 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60019A5")]
|
||||
[Address(RVA = "0x28ACD10", Offset = "0x28ABB10", VA = "0x1828ACD10")]
|
||||
public SettingsPropertyWrongTypeException(string message)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyWrongTypeException" /> class based on the supplied parameters.</summary>
|
||||
/// <param name="message">A string containing an exception message.</param>
|
||||
/// <param name="innerException">The exception that is the cause of the current exception.</param>
|
||||
// Token: 0x060019A6 RID: 6566 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60019A6")]
|
||||
[Address(RVA = "0x28ACCE0", Offset = "0x28ABAE0", VA = "0x1828ACCE0")]
|
||||
public SettingsPropertyWrongTypeException(string message, Exception innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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: 0x02000385 RID: 901
|
||||
[Token(Token = "0x2000385")]
|
||||
public abstract class SettingsProvider : ProviderBase
|
||||
{
|
||||
/// <summary>Initializes an instance of the <see cref="T:System.Configuration.SettingsProvider" /> class.</summary>
|
||||
// Token: 0x060017CA RID: 6090 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017CA")]
|
||||
[Address(RVA = "0x28AD220", Offset = "0x28AC020", VA = "0x1828AD220")]
|
||||
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: 0x17000512 RID: 1298
|
||||
// (get) Token: 0x060017CB RID: 6091
|
||||
// (set) Token: 0x060017CC RID: 6092
|
||||
[Token(Token = "0x17000512")]
|
||||
public abstract string ApplicationName
|
||||
{
|
||||
[Token(Token = "0x60017CB")]
|
||||
[Address(Slot = "5")]
|
||||
get;
|
||||
[Token(Token = "0x60017CC")]
|
||||
[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: 0x060017CD RID: 6093
|
||||
[Token(Token = "0x60017CD")]
|
||||
[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: 0x060017CE RID: 6094
|
||||
[Token(Token = "0x60017CE")]
|
||||
[Address(Slot = "8")]
|
||||
public abstract void SetPropertyValues(SettingsContext context, SettingsPropertyValueCollection collection);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Specifies the settings provider used to provide storage for the current application settings class or property. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003D6 RID: 982
|
||||
[Token(Token = "0x20003D6")]
|
||||
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)]
|
||||
public sealed class SettingsProviderAttribute : Attribute
|
||||
{
|
||||
/// <summary>Initializes an instance of the <see cref="T:System.Configuration.SettingsProviderAttribute" /> class.</summary>
|
||||
/// <param name="providerTypeName">A <see cref="T:System.String" /> containing the name of the settings provider.</param>
|
||||
// Token: 0x060019A7 RID: 6567 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60019A7")]
|
||||
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
|
||||
public SettingsProviderAttribute(string providerTypeName)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsProviderAttribute" /> class.</summary>
|
||||
/// <param name="providerType">A <see cref="T:System.Type" /> containing the settings provider type.</param>
|
||||
// Token: 0x060019A8 RID: 6568 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60019A8")]
|
||||
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
|
||||
public SettingsProviderAttribute(Type providerType)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the type name of the settings provider.</summary>
|
||||
/// <returns>A <see cref="T:System.String" /> containing the name of the settings provider.</returns>
|
||||
// Token: 0x170005C3 RID: 1475
|
||||
// (get) Token: 0x060019A9 RID: 6569 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005C3")]
|
||||
public string ProviderTypeName
|
||||
{
|
||||
[Token(Token = "0x60019A9")]
|
||||
[Address(RVA = "0x28AD160", Offset = "0x28ABF60", VA = "0x1828AD160")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Configuration.Provider;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Represents a collection of application settings providers.</summary>
|
||||
// Token: 0x0200038A RID: 906
|
||||
[Token(Token = "0x200038A")]
|
||||
public class SettingsProviderCollection : ProviderCollection
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsProviderCollection" /> class.</summary>
|
||||
// Token: 0x060017E9 RID: 6121 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017E9")]
|
||||
[Address(RVA = "0x28AD1C0", Offset = "0x28ABFC0", VA = "0x1828AD1C0")]
|
||||
public SettingsProviderCollection()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the settings provider in the collection that matches the specified name.</summary>
|
||||
/// <param name="name">A <see cref="T:System.String" /> containing the friendly name of the settings provider.</param>
|
||||
/// <returns>If found, the <see cref="T:System.Configuration.SettingsProvider" /> whose name matches that specified by the name parameter; otherwise, <see langword="null" />.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">The <paramref name="name" /> parameter is <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.NotSupportedException">The collection is read-only when setting this value.</exception>
|
||||
// Token: 0x1700051E RID: 1310
|
||||
[Token(Token = "0x1700051E")]
|
||||
public SettingsProvider this[string name]
|
||||
{
|
||||
[Token(Token = "0x60017EA")]
|
||||
[Address(RVA = "0x28AD1F0", Offset = "0x28ABFF0", VA = "0x1828AD1F0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Adds a new settings provider to the collection.</summary>
|
||||
/// <param name="provider">A <see cref="T:System.Configuration.Provider.ProviderBase" /> to add to the collection.</param>
|
||||
/// <exception cref="T:System.ArgumentException">The <paramref name="provider" /> parameter is not of type <see cref="T:System.Configuration.SettingsProvider" />.
|
||||
/// -or-
|
||||
/// The <see cref="P:System.Configuration.Provider.ProviderBase.Name" /> property of the provider parameter is null or an empty string.
|
||||
/// -or-
|
||||
/// A settings provider with the same <see cref="P:System.Configuration.Provider.ProviderBase.Name" /> already exists in the collection.</exception>
|
||||
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
|
||||
/// <exception cref="T:System.ArgumentNullException">The <paramref name="provider" /> parameter is <see langword="null" />.</exception>
|
||||
// Token: 0x060017EB RID: 6123 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017EB")]
|
||||
[Address(RVA = "0x28AD190", Offset = "0x28ABF90", VA = "0x1828AD190", Slot = "4")]
|
||||
public override void Add(ProviderBase provider)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Represents the method that will handle the <see cref="E:System.Configuration.ApplicationSettingsBase.SettingsSaving" /> event.</summary>
|
||||
/// <param name="sender">The source of the event, typically a data container or data-bound collection.</param>
|
||||
/// <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data.</param>
|
||||
// Token: 0x020003B7 RID: 951
|
||||
// (Invoke) Token: 0x06001930 RID: 6448
|
||||
[Token(Token = "0x20003B7")]
|
||||
public delegate void SettingsSavingEventHandler(object sender, CancelEventArgs e);
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Determines the serialization scheme used to store application settings.</summary>
|
||||
// Token: 0x02000388 RID: 904
|
||||
[Token(Token = "0x2000388")]
|
||||
public enum SettingsSerializeAs
|
||||
{
|
||||
/// <summary>The settings property is serialized using binary object serialization.</summary>
|
||||
// Token: 0x04000EE4 RID: 3812
|
||||
[Token(Token = "0x4000EE4")]
|
||||
Binary = 2,
|
||||
/// <summary>The settings provider has implicit knowledge of the property or its type and picks an appropriate serialization mechanism. Often used for custom serialization.</summary>
|
||||
// Token: 0x04000EE5 RID: 3813
|
||||
[Token(Token = "0x4000EE5")]
|
||||
ProviderSpecific,
|
||||
/// <summary>The settings property is serialized as plain text.</summary>
|
||||
// Token: 0x04000EE6 RID: 3814
|
||||
[Token(Token = "0x4000EE6")]
|
||||
String = 0,
|
||||
/// <summary>The settings property is serialized as XML using XML serialization.</summary>
|
||||
// Token: 0x04000EE7 RID: 3815
|
||||
[Token(Token = "0x4000EE7")]
|
||||
Xml
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Specifies the serialization mechanism that the settings provider should use. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003D7 RID: 983
|
||||
[Token(Token = "0x20003D7")]
|
||||
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)]
|
||||
public sealed class SettingsSerializeAsAttribute : Attribute
|
||||
{
|
||||
/// <summary>Initializes an instance of the <see cref="T:System.Configuration.SettingsSerializeAsAttribute" /> class.</summary>
|
||||
/// <param name="serializeAs">A <see cref="T:System.Configuration.SettingsSerializeAs" /> enumerated value that specifies the serialization scheme.</param>
|
||||
// Token: 0x060019AA RID: 6570 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60019AA")]
|
||||
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
|
||||
public SettingsSerializeAsAttribute(SettingsSerializeAs serializeAs)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the <see cref="T:System.Configuration.SettingsSerializeAs" /> enumeration value that specifies the serialization scheme.</summary>
|
||||
/// <returns>A <see cref="T:System.Configuration.SettingsSerializeAs" /> enumerated value that specifies the serialization scheme.</returns>
|
||||
// Token: 0x170005C4 RID: 1476
|
||||
// (get) Token: 0x060019AB RID: 6571 RVA: 0x0000ACE0 File Offset: 0x00008EE0
|
||||
[Token(Token = "0x170005C4")]
|
||||
public SettingsSerializeAs SerializeAs
|
||||
{
|
||||
[Token(Token = "0x60019AB")]
|
||||
[Address(RVA = "0x28AD310", Offset = "0x28AC110", VA = "0x1828AD310")]
|
||||
get
|
||||
{
|
||||
return SettingsSerializeAs.String;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Xml;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Handles configuration sections that are represented by a single XML tag in the .config file.</summary>
|
||||
// Token: 0x020003D8 RID: 984
|
||||
[Token(Token = "0x20003D8")]
|
||||
public class SingleTagSectionHandler : IConfigurationSectionHandler
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SingleTagSectionHandler" /> class.</summary>
|
||||
// Token: 0x060019AC RID: 6572 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60019AC")]
|
||||
[Address(RVA = "0x28AD370", Offset = "0x28AC170", VA = "0x1828AD370")]
|
||||
public SingleTagSectionHandler()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Used internally to create a new instance of this object.</summary>
|
||||
/// <param name="parent">The parent of this object.</param>
|
||||
/// <param name="context">The context of this object.</param>
|
||||
/// <param name="section">The <see cref="T:System.Xml.XmlNode" /> object in the configuration.</param>
|
||||
/// <returns>The created object handler.</returns>
|
||||
// Token: 0x060019AD RID: 6573 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60019AD")]
|
||||
[Address(RVA = "0x28AD340", Offset = "0x28AC140", VA = "0x1828AD340", Slot = "5")]
|
||||
public virtual object Create(object parent, object context, XmlNode section)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Specifies the special setting category of a application settings property.</summary>
|
||||
// Token: 0x020003D9 RID: 985
|
||||
[Token(Token = "0x20003D9")]
|
||||
public enum SpecialSetting
|
||||
{
|
||||
/// <summary>The configuration property represents a connection string, typically for a data store or network resource.</summary>
|
||||
// Token: 0x04000EF7 RID: 3831
|
||||
[Token(Token = "0x4000EF7")]
|
||||
ConnectionString,
|
||||
/// <summary>The configuration property represents a Uniform Resource Locator (URL) to a Web service.</summary>
|
||||
// Token: 0x04000EF8 RID: 3832
|
||||
[Token(Token = "0x4000EF8")]
|
||||
WebServiceUrl
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Indicates that an application settings property has a special significance. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003DA RID: 986
|
||||
[Token(Token = "0x20003DA")]
|
||||
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)]
|
||||
public sealed class SpecialSettingAttribute : Attribute
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SpecialSettingAttribute" /> class.</summary>
|
||||
/// <param name="specialSetting">A <see cref="T:System.Configuration.SpecialSetting" /> enumeration value defining the category of the application settings property.</param>
|
||||
// Token: 0x060019AE RID: 6574 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60019AE")]
|
||||
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
|
||||
public SpecialSettingAttribute(SpecialSetting specialSetting)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the value describing the special setting category of the application settings property.</summary>
|
||||
/// <returns>A <see cref="T:System.Configuration.SpecialSetting" /> enumeration value defining the category of the application settings property.</returns>
|
||||
// Token: 0x170005C5 RID: 1477
|
||||
// (get) Token: 0x060019AF RID: 6575 RVA: 0x0000ACF8 File Offset: 0x00008EF8
|
||||
[Token(Token = "0x170005C5")]
|
||||
public SpecialSetting SpecialSetting
|
||||
{
|
||||
[Token(Token = "0x60019AF")]
|
||||
[Address(RVA = "0x28AD3A0", Offset = "0x28AC1A0", VA = "0x1828AD3A0")]
|
||||
get
|
||||
{
|
||||
return SpecialSetting.ConnectionString;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Represents the Uri section within a configuration file.</summary>
|
||||
// Token: 0x020003DB RID: 987
|
||||
[Token(Token = "0x20003DB")]
|
||||
public sealed class UriSection : ConfigurationSection
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.UriSection" /> class.</summary>
|
||||
// Token: 0x060019B0 RID: 6576 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60019B0")]
|
||||
[Address(RVA = "0x28B0FA0", Offset = "0x28AFDA0", VA = "0x1828B0FA0")]
|
||||
public UriSection()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets an <see cref="T:System.Configuration.IdnElement" /> object that contains the configuration setting for International Domain Name (IDN) processing in the <see cref="T:System.Uri" /> class.</summary>
|
||||
/// <returns>The configuration setting for International Domain Name (IDN) processing in the <see cref="T:System.Uri" /> class.</returns>
|
||||
// Token: 0x170005C6 RID: 1478
|
||||
// (get) Token: 0x060019B1 RID: 6577 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005C6")]
|
||||
public IdnElement Idn
|
||||
{
|
||||
[Token(Token = "0x60019B1")]
|
||||
[Address(RVA = "0x28B0FD0", Offset = "0x28AFDD0", VA = "0x1828B0FD0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets an <see cref="T:System.Configuration.IriParsingElement" /> object that contains the configuration setting for International Resource Identifiers (IRI) parsing in the <see cref="T:System.Uri" /> class.</summary>
|
||||
/// <returns>The configuration setting for International Resource Identifiers (IRI) parsing in the <see cref="T:System.Uri" /> class.</returns>
|
||||
// Token: 0x170005C7 RID: 1479
|
||||
// (get) Token: 0x060019B2 RID: 6578 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005C7")]
|
||||
public IriParsingElement IriParsing
|
||||
{
|
||||
[Token(Token = "0x60019B2")]
|
||||
[Address(RVA = "0x28B1000", Offset = "0x28AFE00", VA = "0x1828B1000")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170005C8 RID: 1480
|
||||
// (get) Token: 0x060019B3 RID: 6579 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005C8")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x60019B3")]
|
||||
[Address(RVA = "0x28B1030", Offset = "0x28AFE30", VA = "0x1828B1030", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets a <see cref="T:System.Configuration.SchemeSettingElementCollection" /> object that contains the configuration settings for scheme parsing in the <see cref="T:System.Uri" /> class.</summary>
|
||||
/// <returns>The configuration settings for scheme parsing in the <see cref="T:System.Uri" /> class</returns>
|
||||
// Token: 0x170005C9 RID: 1481
|
||||
// (get) Token: 0x060019B4 RID: 6580 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005C9")]
|
||||
public SchemeSettingElementCollection SchemeSettings
|
||||
{
|
||||
[Token(Token = "0x60019B4")]
|
||||
[Address(RVA = "0x28B1060", Offset = "0x28AFE60", VA = "0x1828B1060")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Specifies that an application settings group or property contains distinct values for each user of an application. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003DC RID: 988
|
||||
[Token(Token = "0x20003DC")]
|
||||
[AttributeUsage(AttributeTargets.Property)]
|
||||
public sealed class UserScopedSettingAttribute : SettingAttribute
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.UserScopedSettingAttribute" /> class.</summary>
|
||||
// Token: 0x060019B5 RID: 6581 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60019B5")]
|
||||
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
|
||||
public UserScopedSettingAttribute()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Represents a grouping of related user settings sections within a configuration file. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003DD RID: 989
|
||||
[Token(Token = "0x20003DD")]
|
||||
public sealed class UserSettingsGroup : ConfigurationSectionGroup
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.UserSettingsGroup" /> class.</summary>
|
||||
// Token: 0x060019B6 RID: 6582 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60019B6")]
|
||||
[Address(RVA = "0x28B1090", Offset = "0x28AFE90", VA = "0x1828B1090")]
|
||||
public UserSettingsGroup()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user