C# 클래스 TwitchLib.Extensions.Client.UnbanUserExt

파일 보기 프로젝트 열기: swiftyspiffy/TwitchLib

공개 메소드들

메소드 설명
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

메소드 상세

UnbanUser() 공개 정적인 메소드

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)
리턴 void

UnbanUser() 공개 정적인 메소드

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)
리턴 void

UnbanUser() 공개 정적인 메소드

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)
리턴 void