diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-01 13:57:34 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-01 13:57:34 -0400 |
| commit | 9bf346dacab27cc31fdb3308c23fc86a400c717c (patch) | |
| tree | b088164dc4d998e4c9d5410505b0e3f8288c9370 /MediaBrowser.Common.Implementations/HttpClientManager/HttpClientInfo.cs | |
| parent | 6accfc124dce10e475b1d22d1f7ea65cef46d32b (diff) | |
added basic timeout detection
Diffstat (limited to 'MediaBrowser.Common.Implementations/HttpClientManager/HttpClientInfo.cs')
| -rw-r--r-- | MediaBrowser.Common.Implementations/HttpClientManager/HttpClientInfo.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientInfo.cs b/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientInfo.cs new file mode 100644 index 000000000..33f7079df --- /dev/null +++ b/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientInfo.cs @@ -0,0 +1,22 @@ +using System; +using System.Net.Http; + +namespace MediaBrowser.Common.Implementations.HttpClientManager +{ + /// <summary> + /// Class HttpClientInfo + /// </summary> + public class HttpClientInfo + { + /// <summary> + /// Gets or sets the HTTP client. + /// </summary> + /// <value>The HTTP client.</value> + public HttpClient HttpClient { get; set; } + /// <summary> + /// Gets or sets the last timeout. + /// </summary> + /// <value>The last timeout.</value> + public DateTime LastTimeout { get; set; } + } +} |
