Class IgniteConfigurationSection
Ignite configuration section for app.config and web.config files.
Inherited Members
Namespace: Apache.Ignite.Core
Assembly: Apache.Ignite.Core.dll
Syntax
public class IgniteConfigurationSection : ConfigurationSection
Properties
IgniteConfiguration
Gets or sets the ignite configuration.
Declaration
public IgniteConfiguration IgniteConfiguration { get; }
Property Value
| Type | Description |
|---|---|
| IgniteConfiguration | The ignite configuration. |
Methods
DeserializeSection(XmlReader)
Reads XML from the configuration file.
Declaration
protected override void DeserializeSection(XmlReader reader)
Parameters
| Type | Name | Description |
|---|---|---|
| XmlReader | reader | The reader object, which reads from the configuration file. |
Overrides
SerializeSection(ConfigurationElement, string, ConfigurationSaveMode)
Creates an XML string containing an unmerged view of the ConfigurationSection object as a single section to write to a file.
Declaration
protected override string SerializeSection(ConfigurationElement parentElement, string name, ConfigurationSaveMode saveMode)
Parameters
| Type | Name | Description |
|---|---|---|
| ConfigurationElement | parentElement | The ConfigurationElement instance to use as the parent when performing the un-merge. |
| string | name | The name of the section to create. |
| ConfigurationSaveMode | saveMode | The ConfigurationSaveMode instance to use when writing to a string. |
Returns
| Type | Description |
|---|---|
| string | An XML string containing an unmerged view of the ConfigurationSection object. |