From 650dc0ccac5bbb372f644d6c383fbc88af4f4e7b Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 7 Jan 2014 15:12:39 -0500 Subject: added new search params --- MediaBrowser.Model/ApiClient/IApiClient.cs | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'MediaBrowser.Model/ApiClient/IApiClient.cs') diff --git a/MediaBrowser.Model/ApiClient/IApiClient.cs b/MediaBrowser.Model/ApiClient/IApiClient.cs index 9fdcf9150..c5b5311b2 100644 --- a/MediaBrowser.Model/ApiClient/IApiClient.cs +++ b/MediaBrowser.Model/ApiClient/IApiClient.cs @@ -107,13 +107,9 @@ namespace MediaBrowser.Model.ApiClient /// /// Gets the search hints async. /// - /// The user id. - /// The search term. - /// The start index. - /// The limit. + /// The query. /// Task{SearchHintResult}. - Task GetSearchHintsAsync(string userId, string searchTerm, int? startIndex = null, - int? limit = null); + Task GetSearchHintsAsync(SearchQuery query); /// /// Gets the theme videos async. @@ -682,8 +678,9 @@ namespace MediaBrowser.Model.ApiClient /// /// The URL. /// The args. + /// The cancellation token. /// Task{``0}. - Task PostAsync(string url, Dictionary args) + Task PostAsync(string url, Dictionary args, CancellationToken cancellationToken) where T : class; /// -- cgit v1.2.3