diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-21 12:02:30 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-21 12:02:30 -0400 |
| commit | 4331700747440cfa2c2df0cea1abcace9ed60019 (patch) | |
| tree | 59b30193c93c4f1f271f74105798190d8148e71a /MediaBrowser.Common/Net/IHttpClient.cs | |
| parent | 3b4be92038bb517385696d6f12f08c23a79eda44 (diff) | |
support sending upnp events
Diffstat (limited to 'MediaBrowser.Common/Net/IHttpClient.cs')
| -rw-r--r-- | MediaBrowser.Common/Net/IHttpClient.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Net/IHttpClient.cs b/MediaBrowser.Common/Net/IHttpClient.cs index e583c6b26..4eabbc803 100644 --- a/MediaBrowser.Common/Net/IHttpClient.cs +++ b/MediaBrowser.Common/Net/IHttpClient.cs @@ -44,6 +44,14 @@ namespace MediaBrowser.Common.Net Task<Stream> Get(HttpRequestOptions options); /// <summary> + /// Sends the asynchronous. + /// </summary> + /// <param name="options">The options.</param> + /// <param name="httpMethod">The HTTP method.</param> + /// <returns>Task{HttpResponseInfo}.</returns> + Task<HttpResponseInfo> SendAsync(HttpRequestOptions options, string httpMethod); + + /// <summary> /// Performs a POST request /// </summary> /// <param name="url">The URL.</param> |
