Class CDataConfigurationElement
This class represents the base implementation for retrieving text from an XML CDATA node within a configuration file.
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="akka" type="Akka.Configuration.Hocon.AkkaConfigurationSection, Akka" />
</configSections>
<akka>
<hocon>
<![CDATA[
...
]]>
</hocon>
</akka>
</configuration>
Inherited Members
Namespace: Akka.Configuration.Hocon
Assembly: Akka.dll
Syntax
public abstract class CDataConfigurationElement : ConfigurationElement
Fields
| Improve this Doc View SourceContentPropertyName
The name of the property that contains the content to deserialize.
Declaration
protected const string ContentPropertyName = "content"
Field Value
Type | Description |
---|---|
String |
Methods
| Improve this Doc View SourceDeserializeElement(XmlReader, Boolean)
Deserializes the text located in a CDATA node of the configuration file.
Declaration
protected override void DeserializeElement(XmlReader reader, bool serializeCollectionKey)
Parameters
Type | Name | Description |
---|---|---|
XmlReader | reader | The XmlReader that reads from the configuration file. |
Boolean | serializeCollectionKey |
|