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

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

공개 메소드들

메소드 설명
TimeoutUser ( this client, JoinedChannel channel, string viewer, System.TimeSpan duration, string message = "", bool dryRun = false ) : void

TImesout a user in chat using a JoinedChannel object.

TimeoutUser ( this client, string viewer, System.TimeSpan duration, string message = "", bool dryRun = false ) : void

Timesout a user using the first joined channel.

TimeoutUser ( this client, string channel, string viewer, System.TimeSpan duration, string message = "", bool dryRun = false ) : void

Timesout a user in chat using a string for the channel.

메소드 상세

TimeoutUser() 공개 정적인 메소드

TImesout a user in chat using a JoinedChannel object.
public static TimeoutUser ( this client, JoinedChannel channel, string viewer, System.TimeSpan duration, string message = "", bool dryRun = false ) : void
client this
channel TwitchLib.Models.Client.JoinedChannel Channel object to send timeout to
viewer string Viewer name to timeout
duration System.TimeSpan Duration of the timeout via TimeSpan object
message string Message to accompany the timeout and show the user.
dryRun bool Indicates a dryrun (will not sened if true)
리턴 void

TimeoutUser() 공개 정적인 메소드

Timesout a user using the first joined channel.
public static TimeoutUser ( this client, string viewer, System.TimeSpan duration, string message = "", bool dryRun = false ) : void
client this
viewer string Viewer name to timeout
duration System.TimeSpan Duration of the timeout via TimeSpan object
message string Message to accompany the timeout and show the user.
dryRun bool Indicates a dryrun (will not sened if true)
리턴 void

TimeoutUser() 공개 정적인 메소드

Timesout a user in chat using a string for the channel.
public static TimeoutUser ( this client, string channel, string viewer, System.TimeSpan duration, string message = "", bool dryRun = false ) : void
client this
channel string Channel in string form to send timeout to
viewer string Viewer name to timeout
duration System.TimeSpan Duration of the timeout via TimeSpan object
message string Message to accompany the timeout and show the user.
dryRun bool Indicates a dryrun (will not sened if true)
리턴 void