DataInputStream.readUntil

Reads a string from the data input stream, up to the first occurrence of any of the stop characters.

Note that, in contrast to DataInputStream.readUntilAsync, this function consumes the stop character that it finds.

Don't use this function in new code. Its functionality is inconsistent with DataInputStream.readUntilAsync. Both functions will be marked as deprecated in a future release. Use DataInputStream.readUpto instead, but note that that function does not consume the stop character.

More...
class DataInputStream
string
readUntil

Parameters

stopChars string

characters to terminate the read.

length size_t

a gsize to get the length of the data read in.

cancellable Cancellable

optional gio.Cancellable object, NULL to ignore.

Return Value

Type: string

a string with the data that was read before encountering any of the stop characters. Set length to a gsize to get the length of the string. This function will return NULL on an error.

Detailed Description

Deprecated: Use DataInputStream.readUpto instead, which has more consistent behaviour regarding the stop character.

Throws

GException on failure.