diff options
| author | Claus Vium <clausvium@gmail.com> | 2020-09-02 13:06:14 +0200 |
|---|---|---|
| committer | Claus Vium <clausvium@gmail.com> | 2020-09-02 13:06:14 +0200 |
| commit | 12710cdf423c038c076c8bd351706e73f3a27899 (patch) | |
| tree | c0f93845466ac2552f798a157629301b39bbf949 /MediaBrowser.Controller/Net | |
| parent | bde8c00306300ff48c85f8f97a9553fa75eaeaad (diff) | |
More fixes
Diffstat (limited to 'MediaBrowser.Controller/Net')
| -rw-r--r-- | MediaBrowser.Controller/Net/IAuthorizationContext.cs | 7 | ||||
| -rw-r--r-- | MediaBrowser.Controller/Net/IHttpServer.cs | 2 |
2 files changed, 1 insertions, 8 deletions
diff --git a/MediaBrowser.Controller/Net/IAuthorizationContext.cs b/MediaBrowser.Controller/Net/IAuthorizationContext.cs index 4d2f5f5e3..0d310548d 100644 --- a/MediaBrowser.Controller/Net/IAuthorizationContext.cs +++ b/MediaBrowser.Controller/Net/IAuthorizationContext.cs @@ -12,13 +12,6 @@ namespace MediaBrowser.Controller.Net /// </summary> /// <param name="requestContext">The request context.</param> /// <returns>AuthorizationInfo.</returns> - AuthorizationInfo GetAuthorizationInfo(object requestContext); - - /// <summary> - /// Gets the authorization information. - /// </summary> - /// <param name="requestContext">The request context.</param> - /// <returns>AuthorizationInfo.</returns> AuthorizationInfo GetAuthorizationInfo(HttpContext requestContext); /// <summary> diff --git a/MediaBrowser.Controller/Net/IHttpServer.cs b/MediaBrowser.Controller/Net/IHttpServer.cs index 845f27045..637dd2be3 100644 --- a/MediaBrowser.Controller/Net/IHttpServer.cs +++ b/MediaBrowser.Controller/Net/IHttpServer.cs @@ -42,7 +42,7 @@ namespace MediaBrowser.Controller.Net /// <summary> /// Get the default CORS headers. /// </summary> - /// <param name="req">The HTTP context of the current request.</param> + /// <param name="httpContext">The HTTP context of the current request.</param> /// <returns>The default CORS headers for the context.</returns> IDictionary<string, string> GetDefaultCorsHeaders(HttpContext httpContext); } |
