HttpClientInfo.cs 584 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Net.Http;
  3. namespace MediaBrowser.Common.Implementations.HttpClientManager
  4. {
  5. /// <summary>
  6. /// Class HttpClientInfo
  7. /// </summary>
  8. public class HttpClientInfo
  9. {
  10. /// <summary>
  11. /// Gets or sets the HTTP client.
  12. /// </summary>
  13. /// <value>The HTTP client.</value>
  14. public HttpClient HttpClient { get; set; }
  15. /// <summary>
  16. /// Gets or sets the last timeout.
  17. /// </summary>
  18. /// <value>The last timeout.</value>
  19. public DateTime LastTimeout { get; set; }
  20. }
  21. }