using System;
using System.Reflection;
using System.Xml;
using Cpp2IlInjected;
namespace System.Configuration
{
/// Represents a configuration element within a configuration file.
// Token: 0x02000003 RID: 3
[Token(Token = "0x2000003")]
[DefaultMember("Item")]
public abstract class ConfigurationElement
{
/// Gets the collection of properties.
/// The of properties for the element.
// 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;
}
}
/// Reads XML from the configuration file.
/// The that reads from the configuration file.
///
/// to serialize only the collection key properties; otherwise, .
/// 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.
// 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)
{
}
/// Used to initialize a default set of values for the object.
// 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()
{
}
/// Indicates whether this configuration element has been modified since it was last saved or loaded, when implemented in a derived class.
///
/// if the element has been modified; otherwise, .
// 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);
}
/// Called after deserialization.
// 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()
{
}
/// Resets the internal state of the object, including the locks and the properties collections.
/// The parent node of the configuration element.
// 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)
{
}
/// Resets the value of the method to when implemented in a derived class.
// 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()
{
}
/// Writes the outer tags of this configuration element to the configuration file when implemented in a derived class.
/// The that writes to the configuration file.
/// The name of the to be written.
///
/// if writing was successful; otherwise, .
/// The element has multiple child elements.
// 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);
}
/// Modifies the object to remove all values that should not be saved.
/// A at the current level containing a merged view of the properties.
/// The parent , or if this is the top level.
/// One of the enumeration values that determines which property values to include.
// 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)
{
}
}
}