[Visual Basic] Public Delegate Sub NamesEventHandler( _ ByVal channel As String, _ ByVal nicks As String(), _ ByVal last As Boolean _ )
[C#]
public delegate void NamesEventHandler( stringchannel, string[]nicks, boollast );
Parameters
channel
The channel the user is on. "@" is used for secret channels, "*" for private
channels, and "=" for public channels.
nicks
A list of nicks on the channel. If this is the last reply
then it will be empty. Nicks prefixed with a '@' are channel
operators. Nicks prefixed with a '+' have voice privileges on
a moderated channel, i.e. they are allowed to send public messages.