C# Class TwitchLib.Extensions.Client.FollowersOnlyExt

Exibir arquivo Open project: swiftyspiffy/TwitchLib

Public Methods

Method Description
ChangeChatColor ( this client, JoinedChannel channel, System.TimeSpan requiredFollowTime ) : void

Enables follower only chat, requires a TimeSpan object to indicate how long a viewer must have been following to chat. Maximum time is 90 days (3 months).

ChangeChatColor ( this client, System.TimeSpan requiredFollowTime ) : void

Enables follower only chat, requires a TimeSpan object to indicate how long a viewer must have been following to chat. Maximum time is 90 days (3 months).

ChangeChatColor ( this client, string channel, System.TimeSpan requiredFollowTime ) : void

Enables follower only chat, requires a TimeSpan object to indicate how long a viewer must have been following to chat. Maximum time is 90 days (3 months).

FollowersOnlyOff ( this client ) : void

Disables follower only chat.

FollowersOnlyOff ( this client, JoinedChannel channel ) : void

Disables follower only chat.

FollowersOnlyOff ( this client, string channel ) : void

Disables follower only chat.

Method Details

ChangeChatColor() public static method

Enables follower only chat, requires a TimeSpan object to indicate how long a viewer must have been following to chat. Maximum time is 90 days (3 months).
public static ChangeChatColor ( this client, JoinedChannel channel, System.TimeSpan requiredFollowTime ) : void
client this
channel TwitchLib.Models.Client.JoinedChannel JoinedChannel object representing which channel to send command to.
requiredFollowTime System.TimeSpan Amount of time required to pass before a viewer can chat. Maximum is 3 months (90 days).
return void

ChangeChatColor() public static method

Enables follower only chat, requires a TimeSpan object to indicate how long a viewer must have been following to chat. Maximum time is 90 days (3 months).
public static ChangeChatColor ( this client, System.TimeSpan requiredFollowTime ) : void
client this
requiredFollowTime System.TimeSpan Amount of time required to pass before a viewer can chat. Maximum is 3 months (90 days).
return void

ChangeChatColor() public static method

Enables follower only chat, requires a TimeSpan object to indicate how long a viewer must have been following to chat. Maximum time is 90 days (3 months).
public static ChangeChatColor ( this client, string channel, System.TimeSpan requiredFollowTime ) : void
client this
channel string String representing the channel to send the command to.
requiredFollowTime System.TimeSpan Amount of time required to pass before a viewer can chat. Maximum is 3 months (90 days).
return void

FollowersOnlyOff() public static method

Disables follower only chat.
public static FollowersOnlyOff ( this client ) : void
client this
return void

FollowersOnlyOff() public static method

Disables follower only chat.
public static FollowersOnlyOff ( this client, JoinedChannel channel ) : void
client this
channel TwitchLib.Models.Client.JoinedChannel
return void

FollowersOnlyOff() public static method

Disables follower only chat.
public static FollowersOnlyOff ( this client, string channel ) : void
client this
channel string
return void