View on GitHub

LinqToTwitter

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

Getting Muted IDs

Retrieve a list of muted user IDs.

Entity: Mute

Type: MuteType.IDs

Parameters/Filters:
Name Purpose Type Required
Cursor Allows you to page through query results long no
v3.x Example:
            var muteResponse =
                await
                (from mute in twitterCtx.Mute
                 where mute.Type == MuteType.IDs
                 select mute)
                .SingleOrDefaultAsync();

            muteResponse.IDList.ForEach(id => Console.WriteLine(id));

Twitter API: mutes/users/ids