Search Results for

    Show / Hide Table of Contents

    Class AkkaConfigurationSection

    This class represents a custom akka 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>
      ...
      </akka>
    </configuration>
    Inheritance
    object
    ConfigurationElement
    ConfigurationSection
    AkkaConfigurationSection
    Inherited Members
    ConfigurationSection.GetRuntimeObject()
    ConfigurationSection.IsModified()
    ConfigurationSection.ResetModified()
    ConfigurationSection.DeserializeSection(XmlReader)
    ConfigurationSection.SerializeSection(ConfigurationElement, string, ConfigurationSaveMode)
    ConfigurationSection.ShouldSerializePropertyInTargetVersion(ConfigurationProperty, string, FrameworkName, ConfigurationElement)
    ConfigurationSection.ShouldSerializeElementInTargetVersion(ConfigurationElement, string, FrameworkName)
    ConfigurationSection.ShouldSerializeSectionInTargetVersion(FrameworkName)
    ConfigurationSection.SectionInformation
    ConfigurationElement.Init()
    ConfigurationElement.IsReadOnly()
    ConfigurationElement.SetReadOnly()
    ConfigurationElement.ListErrors(IList)
    ConfigurationElement.InitializeDefault()
    ConfigurationElement.Reset(ConfigurationElement)
    ConfigurationElement.Equals(object)
    ConfigurationElement.GetHashCode()
    ConfigurationElement.SetPropertyValue(ConfigurationProperty, object, bool)
    ConfigurationElement.Unmerge(ConfigurationElement, ConfigurationElement, ConfigurationSaveMode)
    ConfigurationElement.SerializeToXmlElement(XmlWriter, string)
    ConfigurationElement.SerializeElement(XmlWriter, bool)
    ConfigurationElement.DeserializeElement(XmlReader, bool)
    ConfigurationElement.OnRequiredPropertyNotFound(string)
    ConfigurationElement.PostDeserialize()
    ConfigurationElement.PreSerialize(XmlWriter)
    ConfigurationElement.OnDeserializeUnrecognizedAttribute(string, string)
    ConfigurationElement.OnDeserializeUnrecognizedElement(string, XmlReader)
    ConfigurationElement.GetTransformedTypeString(string)
    ConfigurationElement.GetTransformedAssemblyString(string)
    ConfigurationElement.LockAttributes
    ConfigurationElement.LockAllAttributesExcept
    ConfigurationElement.LockElements
    ConfigurationElement.LockAllElementsExcept
    ConfigurationElement.LockItem
    ConfigurationElement.this[ConfigurationProperty]
    ConfigurationElement.this[string]
    ConfigurationElement.Properties
    ConfigurationElement.ElementInformation
    ConfigurationElement.EvaluationContext
    ConfigurationElement.ElementProperty
    ConfigurationElement.HasContext
    ConfigurationElement.CurrentConfiguration
    object.Equals(object, object)
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Akka.Configuration.Hocon
    Assembly: Akka.dll
    Syntax
    public class AkkaConfigurationSection : ConfigurationSection

    Properties

    | Edit this page View Source

    AkkaConfig

    Retrieves a Config from the contents of the custom akka node within a configuration file.

    Declaration
    public Config AkkaConfig { get; }
    Property Value
    Type Description
    Config
    | Edit this page View Source

    Hocon

    Retrieves the HOCON (Human-Optimized Config Object Notation) configuration string from the custom akka node.

    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
      <configSections>
        <section name="akka" type="Akka.Configuration.Hocon.AkkaConfigurationSection, Akka" />
      </configSections>
      <akka>
         <hocon>
         ...
         </hocon>
      </akka>
    </configuration>
    Declaration
    [ConfigurationProperty("hocon", IsRequired = true)]
    public HoconConfigurationElement Hocon { get; set; }
    Property Value
    Type Description
    HoconConfigurationElement

    Extension Methods

    ObjectExtensions.IsDefaultForType<T>(T)
    ObjectExtensions.AsOption<T>(T)
    Extensions.AsInstanceOf<T>(object)
    In this article
    • githubEdit this page
    • View Source
    Back to top
    Contribute
    • Project Chat
    • Discussion Forum
    • Source Code
    Support
    • Akka.NET Support Plans
    • Akka.NET Observability Tools
    • Akka.NET Training & Consulting
    Maintained By
    • Petabridge - The Akka.NET Company
    • Learn Akka.NET