C# Class TwitchLib.Extensions.Client.UnbanUserExt

Exibir arquivo Open project: swiftyspiffy/TwitchLib

Public Methods

Method Description
UnbanUser ( this client, JoinedChannel channel, string viewer, bool dryRun = false ) : void

Unbans a user in chat using JoinedChannel

UnbanUser ( this client, string viewer, bool dryRun = false ) : void

Unbans a user in chat using first joined channel.

UnbanUser ( this client, string channel, string viewer, bool dryRun = false ) : void

Unbans a user in chat using a string for the channel

Method Details

UnbanUser() public static method

Unbans a user in chat using JoinedChannel
public static UnbanUser ( this client, JoinedChannel channel, string viewer, bool dryRun = false ) : void
client this
channel TwitchLib.Models.Client.JoinedChannel JoinedChannel object to send unban to
viewer string Viewer name to unban
dryRun bool Indicates a dryrun (will not send if true)
return void

UnbanUser() public static method

Unbans a user in chat using first joined channel.
public static UnbanUser ( this client, string viewer, bool dryRun = false ) : void
client this
viewer string Viewer name to unban
dryRun bool Indicates a dryrun (will not send if true)
return void

UnbanUser() public static method

Unbans a user in chat using a string for the channel
public static UnbanUser ( this client, string channel, string viewer, bool dryRun = false ) : void
client this
channel string Channel in string form to send unban to
viewer string Viewer name to unban
dryRun bool Indicates a dryrun (will not send if true)
return void