aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/SocketSharp/WebSocketSharpRequest.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2019-07-29 00:33:28 +0200
committerBond_009 <bond.009@outlook.com>2019-08-09 22:36:20 +0200
commitcf7290343ff4a440537c61332cdc76c5fbcbb7e9 (patch)
treec1a6299f7f62bd814602f4b830253c43ae21fa3f /Emby.Server.Implementations/SocketSharp/WebSocketSharpRequest.cs
parent9fff4b060e06569ca77636643901aa42767e318d (diff)
Fix build
Diffstat (limited to 'Emby.Server.Implementations/SocketSharp/WebSocketSharpRequest.cs')
-rw-r--r--Emby.Server.Implementations/SocketSharp/WebSocketSharpRequest.cs38
1 files changed, 0 insertions, 38 deletions
diff --git a/Emby.Server.Implementations/SocketSharp/WebSocketSharpRequest.cs b/Emby.Server.Implementations/SocketSharp/WebSocketSharpRequest.cs
index 43f71a69c..332ce3903 100644
--- a/Emby.Server.Implementations/SocketSharp/WebSocketSharpRequest.cs
+++ b/Emby.Server.Implementations/SocketSharp/WebSocketSharpRequest.cs
@@ -1,17 +1,14 @@
using System;
using System.Collections.Generic;
-using System.Globalization;
using System.IO;
using System.Net;
using System.Linq;
-using System.Text;
using MediaBrowser.Common.Net;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Http.Extensions;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Primitives;
using Microsoft.Net.Http.Headers;
-using IHttpFile = MediaBrowser.Model.Services.IHttpFile;
using IHttpRequest = MediaBrowser.Model.Services.IHttpRequest;
namespace Emby.Server.Implementations.SocketSharp
@@ -25,8 +22,6 @@ namespace Emby.Server.Implementations.SocketSharp
private string _remoteIp;
private Dictionary<string, object> _items;
private string _responseContentType;
- private IHttpFile[] _httpFiles;
- private Dictionary<string, HttpPostedFile> _files;
public WebSocketSharpRequest(HttpRequest httpRequest, HttpResponse httpResponse, string operationName, ILogger logger)
{
@@ -109,39 +104,6 @@ namespace Emby.Server.Implementations.SocketSharp
public long ContentLength => Request.ContentLength ?? 0;
-
- public IHttpFile[] Files
- {
- get
- {
- if (_httpFiles != null)
- {
- return _httpFiles;
- }
-
- if (_files == null)
- {
- return _httpFiles = Array.Empty<IHttpFile>();
- }
-
- var values = _files.Values;
- _httpFiles = new IHttpFile[values.Count];
- for (int i = 0; i < values.Count; i++)
- {
- var reqFile = values.ElementAt(i);
- _httpFiles[i] = new HttpFile
- {
- ContentType = reqFile.ContentType,
- ContentLength = reqFile.ContentLength,
- FileName = reqFile.FileName,
- InputStream = reqFile.InputStream,
- };
- }
-
- return _httpFiles;
- }
- }
-
private string GetHeader(string name) => Request.Headers[name].ToString();
private static IPAddress NormalizeIp(IPAddress ip)