Change a channel's mode.
Possible Errors
Exception Type | Condition |
---|---|
ArgumentException | If the channel name is invalid. |
//Give 'nick' the ability to talk on a moderated channel, i.e. add Voice connection.Sender.ChangeChannelMode("#thresher", ModeAction.Add, ChannelMode.Voice,"nick" ); //Make a channel private connection.Sender.ChangeChannelMode( "#thresher", ModeAction.Add, ChannelMode.Private, null );
Sender Class | Sharkbite.Irc Namespace | OnChannelModeChange