Akka.Configuration.Hocon.CDataConfigurationElement.DeserializeElement C# (CSharp) Метод

DeserializeElement() защищенный Метод

Deserializes the text located in a CDATA node of the configuration file.
protected DeserializeElement ( XmlReader reader, bool serializeCollectionKey ) : void
reader System.Xml.XmlReader The that reads from the configuration file.
serializeCollectionKey bool true to serialize only the collection key properties; otherwise, false.
Результат void
        protected override void DeserializeElement(XmlReader reader, bool serializeCollectionKey)
        {
            foreach (ConfigurationProperty configurationProperty in Properties)
            {
                string name = configurationProperty.Name;
                if (name == ContentPropertyName)
                {
                    string contentString = reader.ReadString();
                    base[name] = contentString.Trim();
                }
                else
                {
                    string attributeValue = reader.GetAttribute(name);
                    base[name] = attributeValue;
                }
            }
            reader.ReadEndElement();
        }
CDataConfigurationElement