IrcClient.onCtcpReply

Invoked when a CTCP reply is received in a notice. IrcClient.onNotice is not invoked for the given notice when onCtcpReply has a non-zero number of registered handlers. Note: This callback is only invoked when there is a CTCP message at the start of the notice, and any subsequent CTCP messages in the same notice are discarded. To handle multiple CTCP replies in one notice, use IrcClient.onNotice with $(DPREF ctcp, ctcpExtract).

class IrcClient
void delegate(IrcUser user, in char[] source, in char[] tag, in char[] data)[] onCtcpReply;

Meta