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 = "0x122BB80", Offset = "0x122AB80", VA = "0x18122BB80", 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 = "0x122BA00", Offset = "0x122AA00", VA = "0x18122BA00", 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 = "0x122BA30", Offset = "0x122AA30", VA = "0x18122BA30", 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 = "0x122BA60", Offset = "0x122AA60", VA = "0x18122BA60", 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 = "0x122BA90", Offset = "0x122AA90", VA = "0x18122BA90", 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 = "0x122BAF0", Offset = "0x122AAF0", VA = "0x18122BAF0", 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 = "0x122BAC0", Offset = "0x122AAC0", VA = "0x18122BAC0", 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 = "0x122BB20", Offset = "0x122AB20", VA = "0x18122BB20", 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 = "0x122BB50", Offset = "0x122AB50", VA = "0x18122BB50", Slot = "12")] protected internal virtual void Unmerge(ConfigurationElement sourceElement, ConfigurationElement parentElement, ConfigurationSaveMode saveMode) { } } }