IrcClient.onNameList

Invoked when a list of member nick names for a channel are received.

The list is received after a successful join to a channel by this user, or when explicitly queried with IrcClient.queryNames.

The list for a single invocation is partial; the event can be invoked several times for the same channel as a response to a single trigger. The list is signaled complete when IrcClient.onNameListEnd is invoked.

class IrcClient
void delegate(in char[] channel, in char[][] nickNames)[] onNameList;

Meta