diff options
| author | crobibero <cody@robibe.ro> | 2020-09-03 07:46:52 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-09-03 07:46:52 -0600 |
| commit | fb422ff7411aaedb36d9cb90cc6cc61dd2859a0f (patch) | |
| tree | a40f3d83f025a8227bfcf64c9ad8c93828eb5ba3 /MediaBrowser.Model/Services/IHttpResult.cs | |
| parent | ae8ff1ca54fd5a4081c2e63a5ea1505ba0a69657 (diff) | |
| parent | a2d6ea2eed58b5cd1ecb519e3eda820f336d5485 (diff) | |
Merge remote-tracking branch 'upstream/master' into http-client-migrate
Diffstat (limited to 'MediaBrowser.Model/Services/IHttpResult.cs')
| -rw-r--r-- | MediaBrowser.Model/Services/IHttpResult.cs | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/MediaBrowser.Model/Services/IHttpResult.cs b/MediaBrowser.Model/Services/IHttpResult.cs deleted file mode 100644 index abc581d8e..000000000 --- a/MediaBrowser.Model/Services/IHttpResult.cs +++ /dev/null @@ -1,35 +0,0 @@ -#nullable disable -#pragma warning disable CS1591 - -using System.Net; - -namespace MediaBrowser.Model.Services -{ - public interface IHttpResult : IHasHeaders - { - /// <summary> - /// The HTTP Response Status. - /// </summary> - int Status { get; set; } - - /// <summary> - /// The HTTP Response Status Code. - /// </summary> - HttpStatusCode StatusCode { get; set; } - - /// <summary> - /// The HTTP Response ContentType. - /// </summary> - string ContentType { get; set; } - - /// <summary> - /// Response DTO. - /// </summary> - object Response { get; set; } - - /// <summary> - /// Holds the request call context. - /// </summary> - IRequest RequestContext { get; set; } - } -} |
