The current plugin's IRCPluginState, via which to send messages to the server.
String nickname to query for.
Custom message properties, such as Message.Property.quiet and Message.Property.forced.
String name of the calling function, or something else that gives context.
IRCPluginState state; enum properties = Message.Property.forced; whois(state, "kameloso", properties); immutable m = state.outgoingMessages.data[0]; with (m.event) { assert((type == IRCEvent.Type.RPL_WHOISACCOUNT), Enum!(IRCEvent.Type).toString(type)); assert((target.nickname == "kameloso"), target.nickname); assert(m.properties & Message.Property.forced); }
Queries the server for WHOIS information about a user.