Akka.Configuration.Hocon.Parser.Parse C# (CSharp) Метод

Parse() публичный статический Метод

Parses the supplied HOCON configuration string into a root element.
/// This exception is thrown when an unresolved substitution is encountered. /// It also occurs when the end of the file has been reached while trying /// to read a value. ///
public static Parse ( string text, HoconRoot>.Func includeCallback ) : Akka.Configuration.Hocon.HoconRoot
text string The string that contains a HOCON configuration string.
includeCallback HoconRoot>.Func Callback used to resolve includes
Результат Akka.Configuration.Hocon.HoconRoot
        public static HoconRoot Parse(string text,Func<string,HoconRoot> includeCallback)
        {
            return new Parser().ParseText(text,includeCallback);
        }