IrcClient.ChannelMode

Add or remove channel modes in the given channel.

Members

Variables

argument
const(char)[] argument;
mode
char mode;

Examples

Give channel operator status (+o) to Alice and voice status (+v) to Bob in channel #foo:

client.addChannelModes("#foo", ChannelMode('o', "Alice"), ChannelMode('v', "Bob"));

Meta