IrcClient.sendf

Send formatted lines of chat to a channel or user. Each line in the formatted result is sent as one message. Lines exceeding the IRC message length limit will be split up into multiple messages.

class IrcClient
void
sendf
(
FormatArgs...
)
(
in char[] target
,
in char[] fmt
,
FormatArgs fmtArgs
)

Parameters

target char[]

channel or nick name to _send to

fmt char[]

message format

fmtArgs FormatArgs

format arguments

Throws

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

See Also

$(STDREF format, formattedWrite)

Meta