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

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

공개 메소드들

메소드 설명
Mod ( this client, JoinedChannel channel, string viewerToMod ) : void

Sends a command to make a specific viewer a moderator.

Mod ( this client, string viewerToMod ) : void

Sends a command to make a specific viewer a moderator.

Mod ( this client, string channel, string viewerToMod ) : void

Sends a command to make a specific viewer a moderator.

Unmod ( this client, JoinedChannel channel, string viewerToUnmod ) : void

Sends a command to remove moderator status from a specific viewer

Unmod ( this client, string viewerToUnmod ) : void

Sends a command to remove moderator status from a specific viewer

Unmod ( this client, string channel, string viewerToUnmod ) : void

Sends a command to remove moderator status from a specific viewer

메소드 상세

Mod() 공개 정적인 메소드

Sends a command to make a specific viewer a moderator.
public static Mod ( this client, JoinedChannel channel, string viewerToMod ) : void
client this
channel TwitchLib.Models.Client.JoinedChannel JoinedChannel representation of which channel to send the command to.
viewerToMod string Username of the viewer to make a moderator.
리턴 void

Mod() 공개 정적인 메소드

Sends a command to make a specific viewer a moderator.
public static Mod ( this client, string viewerToMod ) : void
client this
viewerToMod string Username of the viewer to make a moderator.
리턴 void

Mod() 공개 정적인 메소드

Sends a command to make a specific viewer a moderator.
public static Mod ( this client, string channel, string viewerToMod ) : void
client this
channel string String representation of which channel to send the command to.
viewerToMod string Username of the viewer to make a moderator.
리턴 void

Unmod() 공개 정적인 메소드

Sends a command to remove moderator status from a specific viewer
public static Unmod ( this client, JoinedChannel channel, string viewerToUnmod ) : void
client this
channel TwitchLib.Models.Client.JoinedChannel JoinedChannel representation of which channel to send the command to.
viewerToUnmod string Username of the viewer to remove moderator status from.
리턴 void

Unmod() 공개 정적인 메소드

Sends a command to remove moderator status from a specific viewer
public static Unmod ( this client, string viewerToUnmod ) : void
client this
viewerToUnmod string Username of the viewer to remove moderator status from.
리턴 void

Unmod() 공개 정적인 메소드

Sends a command to remove moderator status from a specific viewer
public static Unmod ( this client, string channel, string viewerToUnmod ) : void
client this
channel string String representation of which channel to send the command to.
viewerToUnmod string Username of the viewer to remove moderator status from.
리턴 void