IrcClient.writef

Write a raw message to the connection stream.

If there is more than one argument, then the first argument is formatted with the subsequent ones. Arguments must not contain newlines. Messages longer than 510 characters (UTF-8 code units) will be cut off.

class IrcClient
void
writef
(
T...
)
(
const(char)[] rawline
,)

Parameters

rawline const(char)[]

line to send

fmtArgs T

format arguments for the first argument

Throws

$(DPREF exception, UnconnectedClientException) if this client is not connected.

See Also

$(STDREF format, formattedWrite)

Meta