Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 445 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 445 Bytes

TwitchLib.Client

Client component of TwitchLib.

For a general overview and example, refer to https://github.com/TwitchLib/TwitchLib/blob/master/README.md

Throttler Example

    var clientOptions = new ClientOptions
    {
        MessagesAllowedInPeriod = 100,
        ThrottlingPeriod = TimeSpan.FromSeconds(60)
    };
    var customClient = new WebSocketClient(clientOptions);

    var client = new TwitchClient(customClient);