The url to receive content from
Yes.keepTerminator signals that the line terminator should be returned as part of the lines in the range.
The character that terminates a line
The connection to use e.g. HTTP or FTP.
A range of Char[] with the content of the resource pointer to by the URL
import std.net.curl, std.stdio; foreach (line; byLine("dlang.org")) writeln(line);
HTTP/FTP fetch content as a range of lines.
A range of lines is returned when the request is complete. If the method or other request properties is to be customized then set the conn parameter with a HTTP/FTP instance that has these properties set.