115 lines
5.7 KiB
C#
115 lines
5.7 KiB
C#
using System;
|
|
using System.Reflection;
|
|
using System.Xml;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Configuration
|
|
{
|
|
/// <summary>Represents a configuration element within a configuration file.</summary>
|
|
// Token: 0x02000003 RID: 3
|
|
[Token(Token = "0x2000003")]
|
|
[DefaultMember("Item")]
|
|
public abstract class ConfigurationElement
|
|
{
|
|
/// <summary>Gets the collection of properties.</summary>
|
|
/// <returns>The <see cref="T:System.Configuration.ConfigurationPropertyCollection" /> of properties for the element.</returns>
|
|
// Token: 0x17000001 RID: 1
|
|
// (get) Token: 0x06000005 RID: 5 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x17000001")]
|
|
protected internal virtual ConfigurationPropertyCollection Properties
|
|
{
|
|
[Token(Token = "0x6000005")]
|
|
[Address(RVA = "0x74E170", Offset = "0x74CF70", VA = "0x18074E170", Slot = "4")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Reads XML from the configuration file.</summary>
|
|
/// <param name="reader">The <see cref="T:System.Xml.XmlReader" /> that reads from the configuration file.</param>
|
|
/// <param name="serializeCollectionKey">
|
|
/// <see langword="true" /> to serialize only the collection key properties; otherwise, <see langword="false" />.</param>
|
|
/// <exception cref="T:System.Configuration.ConfigurationErrorsException">The element to read is locked.
|
|
/// -or-
|
|
/// An attribute of the current node is not recognized.
|
|
/// -or-
|
|
/// The lock status of the current node cannot be determined.</exception>
|
|
// Token: 0x06000006 RID: 6 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000006")]
|
|
[Address(RVA = "0x74DFF0", Offset = "0x74CDF0", VA = "0x18074DFF0", Slot = "5")]
|
|
protected internal virtual void DeserializeElement(XmlReader reader, bool serializeCollectionKey)
|
|
{
|
|
}
|
|
|
|
/// <summary>Used to initialize a default set of values for the <see cref="T:System.Configuration.ConfigurationElement" /> object.</summary>
|
|
// Token: 0x06000007 RID: 7 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000007")]
|
|
[Address(RVA = "0x74E020", Offset = "0x74CE20", VA = "0x18074E020", Slot = "6")]
|
|
protected internal virtual void InitializeDefault()
|
|
{
|
|
}
|
|
|
|
/// <summary>Indicates whether this configuration element has been modified since it was last saved or loaded, when implemented in a derived class.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the element has been modified; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x06000008 RID: 8 RVA: 0x00002070 File Offset: 0x00000270
|
|
[Token(Token = "0x6000008")]
|
|
[Address(RVA = "0x74E050", Offset = "0x74CE50", VA = "0x18074E050", Slot = "7")]
|
|
protected internal virtual bool IsModified()
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <summary>Called after deserialization.</summary>
|
|
// Token: 0x06000009 RID: 9 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000009")]
|
|
[Address(RVA = "0x74E080", Offset = "0x74CE80", VA = "0x18074E080", Slot = "8")]
|
|
protected virtual void PostDeserialize()
|
|
{
|
|
}
|
|
|
|
/// <summary>Resets the internal state of the <see cref="T:System.Configuration.ConfigurationElement" /> object, including the locks and the properties collections.</summary>
|
|
/// <param name="parentElement">The parent node of the configuration element.</param>
|
|
// Token: 0x0600000A RID: 10 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600000A")]
|
|
[Address(RVA = "0x74E0E0", Offset = "0x74CEE0", VA = "0x18074E0E0", Slot = "9")]
|
|
protected internal virtual void Reset(ConfigurationElement parentElement)
|
|
{
|
|
}
|
|
|
|
/// <summary>Resets the value of the <see cref="M:System.Configuration.ConfigurationElement.IsModified" /> method to <see langword="false" /> when implemented in a derived class.</summary>
|
|
// Token: 0x0600000B RID: 11 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600000B")]
|
|
[Address(RVA = "0x74E0B0", Offset = "0x74CEB0", VA = "0x18074E0B0", Slot = "10")]
|
|
protected internal virtual void ResetModified()
|
|
{
|
|
}
|
|
|
|
/// <summary>Writes the outer tags of this configuration element to the configuration file when implemented in a derived class.</summary>
|
|
/// <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> that writes to the configuration file.</param>
|
|
/// <param name="elementName">The name of the <see cref="T:System.Configuration.ConfigurationElement" /> to be written.</param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if writing was successful; otherwise, <see langword="false" />.</returns>
|
|
/// <exception cref="T:System.Exception">The element has multiple child elements.</exception>
|
|
// Token: 0x0600000C RID: 12 RVA: 0x00002088 File Offset: 0x00000288
|
|
[Token(Token = "0x600000C")]
|
|
[Address(RVA = "0x74E110", Offset = "0x74CF10", VA = "0x18074E110", Slot = "11")]
|
|
protected internal virtual bool SerializeToXmlElement(XmlWriter writer, string elementName)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <summary>Modifies the <see cref="T:System.Configuration.ConfigurationElement" /> object to remove all values that should not be saved.</summary>
|
|
/// <param name="sourceElement">A <see cref="T:System.Configuration.ConfigurationElement" /> at the current level containing a merged view of the properties.</param>
|
|
/// <param name="parentElement">The parent <see cref="T:System.Configuration.ConfigurationElement" />, or <see langword="null" /> if this is the top level.</param>
|
|
/// <param name="saveMode">One of the enumeration values that determines which property values to include.</param>
|
|
// Token: 0x0600000D RID: 13 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600000D")]
|
|
[Address(RVA = "0x74E140", Offset = "0x74CF40", VA = "0x18074E140", Slot = "12")]
|
|
protected internal virtual void Unmerge(ConfigurationElement sourceElement, ConfigurationElement parentElement, ConfigurationSaveMode saveMode)
|
|
{
|
|
}
|
|
}
|
|
}
|