View on GitHub

LinqToTwitter

LINQ Provider for the Twitter API (C# Twitter Library)

Getting Muted Users

Retrieve a list of muted user entities.

Entity: Mute

Type: MuteType.List

Parameters/Filters:
Name Purpose Type Required
Cursor Allows you to page through query results long no
IncludeEntitites Set to true for Twitter to return entity metadata with users last tweet bool no
SkipStatus Set to true to remove tweet from user entities bool no
v3.x Example:
        var muteResponse =
            await
            (from mute in twitterCtx.Mute
             where mute.Type == MuteType.List
             select mute)
            .SingleOrDefaultAsync();

        muteResponse.Users.ForEach(
            user => Console.WriteLine(user.ScreenNameResponse));

Twitter API: mutes/users/list