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
Type: char[]

channel or nick name to _send to

fmt
Type: char[]

message format

fmtArgs
Type: FormatArgs

format arguments

Throws

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

See Also

$(STDREF format, formattedWrite)

Meta