Akka.Configuration.Config.GetBooleanList C# (CSharp) Метод

GetBooleanList() публичный Метод

Retrieves a list of boolean values from the specified path in the configuration.
public GetBooleanList ( string path ) : IList
path string The path that contains the values to retrieve.
Результат IList
        public virtual IList<Boolean> GetBooleanList(string path)
        {
            HoconValue value = GetNode(path);
            return value.GetBooleanList();
        }