BoxKite.Twitter.FriendsFollowersExtensions.GetFriendshipRequestsOutgoing C# (CSharp) Метод

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

Returns a collection of numeric IDs for every protected user for whom the authenticating user has a pending follow request.
ref: https://dev.twitter.com/docs/api/1.1/get/friendships/outgoing
public static GetFriendshipRequestsOutgoing ( this session, long cursor = -1 ) : Task
session this
cursor long default is first page (-1) otherwise provide starting point
Результат Task
        public async static Task<FriendsFollowersIDsCursored> GetFriendshipRequestsOutgoing(this IUserSession session, long cursor = -1)
        {
            var parameters = new TwitterParametersCollection();
            parameters.Create(cursor: cursor);

            return await session.GetAsync(TwitterApi.Resolve("/1.1/friendships/outgoing.json"), parameters)
                             .ContinueWith(t => t.MapToSingle<FriendsFollowersIDsCursored>());
        }