/// <summary> /// Retrieves a list of byte values from the specified path in the configuration. /// </summary> /// <param name="path">The path that contains the values to retrieve.</param> /// <exception cref="InvalidOperationException">This exception is thrown if the current node is undefined.</exception> /// <returns>The list of byte values defined in the specified path.</returns> public virtual IList <byte> GetByteList(string path) { HoconValue value = GetNode(path); return(value.GetByteList()); }
public static object ParseByteList(HoconValue e) { return(e.GetByteList()); }