BoxKite.Twitter.UsersExtensions.GetBlockList C# (CSharp) Метод

GetBlockList() публичный статический Метод

Returns a collection of user objects that the authenticating user is blocking.
ref: https://dev.twitter.com/docs/api/1.1/get/blocks/list
public static GetBlockList ( this session, long cursor = -1 ) : Task
session this
cursor long Causes the list of blocked users to be broken into pages of no more than 5000 IDs at a time.
Результат Task
        public static async Task<UserListDetailedCursored> GetBlockList(this IUserSession session, long cursor=-1)
        {
            var parameters = new TwitterParametersCollection();
            parameters.Create(cursor:cursor);

            return await session.GetAsync(TwitterApi.Resolve("/1.1/blocks/list.json"), parameters)
                         .ContinueWith(c => c.MapToSingle<UserListDetailedCursored>());
        }