Added missing method to IHttpClient
This commit is contained in:
parent
17bf59dfe3
commit
6657ce2145
|
@ -64,6 +64,14 @@ namespace MediaBrowser.Common.Net
|
|||
/// <returns>Task{Stream}.</returns>
|
||||
Task<Stream> Post(string url, Dictionary<string, string> postData, CancellationToken cancellationToken);
|
||||
|
||||
/// <summary>
|
||||
/// Posts the specified options with post data
|
||||
/// </summary>
|
||||
/// <param name="options">The options</param>
|
||||
/// <param name="postData">The post data</param>
|
||||
/// <returns>Task{Stream}</returns>
|
||||
Task<Stream> Post(HttpRequestOptions options, Dictionary<string, string> postData);
|
||||
|
||||
/// <summary>
|
||||
/// Posts the specified options.
|
||||
/// </summary>
|
||||
|
|
Loading…
Reference in New Issue
Block a user