BoxKite.Twitter.SearchExtensions.GetSaveASearch C# (CSharp) Метод

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

Retrieve the information for the saved search represented by the given id.
ref: https://dev.twitter.com/docs/api/1.1/get/saved_searches/show/%3Aid
public static GetSaveASearch ( this session, string id ) : Task
session this
id string The ID of the saved search.
Результат Task
        public async static Task<SavedSearch> GetSaveASearch(this IUserSession session, string id)
        {
            var parameters = new TwitterParametersCollection();
            var url = TwitterApi.Resolve("/1.1/saved_searches/show/{0}.json", id); 
            return await session.GetAsync(url, parameters)
                .ContinueWith(c => c.MapToSingle<SavedSearch>());
        }