readToEnd()
Reads the available data synchronously up to the end of file or maximum number of bytes.
Declaration
func readToEnd() throws -> Data?Return Value
The data available through the file handle up to the maximum size that can be represented by an NSData object or, if a communications channel, until an end-of-file indicator is returned.
Discussion
This method invokes readData(ofLength:) as part of its implementation.