aboutsummaryrefslogtreecommitdiff
path: root/SocketHttpListener
diff options
context:
space:
mode:
authorErwin de Haan <EraYaN@users.noreply.github.com>2019-01-13 21:03:10 +0100
committerErwin de Haan <EraYaN@users.noreply.github.com>2019-01-13 21:03:10 +0100
commitb062577d81895b2fe1874aa9b44a1961436094a2 (patch)
tree74c31b51f8b929a7328bd9256d8d12742bc541c9 /SocketHttpListener
parent8f41ba4d3aa0a7001748c0282e39baf50f0af13f (diff)
Find+Sed BOM removal *.cs: MediaBrowser.Providers-SocketHttpListener
Diffstat (limited to 'SocketHttpListener')
-rw-r--r--SocketHttpListener/HttpBase.cs2
-rw-r--r--SocketHttpListener/Net/AuthenticationSchemeSelector.cs2
-rw-r--r--SocketHttpListener/Net/AuthenticationTypes.cs2
-rw-r--r--SocketHttpListener/Net/BoundaryType.cs2
-rw-r--r--SocketHttpListener/Net/ChunkedInputStream.cs2
-rw-r--r--SocketHttpListener/Net/CookieHelper.cs2
-rw-r--r--SocketHttpListener/Net/EntitySendFormat.cs2
-rw-r--r--SocketHttpListener/Net/HttpKnownHeaderNames.cs2
-rw-r--r--SocketHttpListener/Net/HttpListenerBasicIdentity.cs2
-rw-r--r--SocketHttpListener/Net/HttpListenerContext.Managed.cs2
-rw-r--r--SocketHttpListener/Net/HttpListenerRequest.Managed.cs2
-rw-r--r--SocketHttpListener/Net/HttpListenerRequestUriBuilder.cs2
-rw-r--r--SocketHttpListener/Net/HttpListenerResponse.Managed.cs2
-rw-r--r--SocketHttpListener/Net/HttpRequestStream.Managed.cs2
-rw-r--r--SocketHttpListener/Net/HttpRequestStream.cs2
-rw-r--r--SocketHttpListener/Net/HttpResponseStream.Managed.cs2
-rw-r--r--SocketHttpListener/Net/HttpResponseStream.cs2
-rw-r--r--SocketHttpListener/Net/HttpStatusDescription.cs2
-rw-r--r--SocketHttpListener/Net/UriScheme.cs2
-rw-r--r--SocketHttpListener/Net/WebHeaderEncoding.cs2
-rw-r--r--SocketHttpListener/Net/WebSockets/HttpWebSocket.Managed.cs2
-rw-r--r--SocketHttpListener/Net/WebSockets/WebSocketCloseStatus.cs2
-rw-r--r--SocketHttpListener/Net/WebSockets/WebSocketValidate.cs2
-rw-r--r--SocketHttpListener/Primitives/ITextEncoding.cs2
-rw-r--r--SocketHttpListener/SocketStream.cs2
25 files changed, 25 insertions, 25 deletions
diff --git a/SocketHttpListener/HttpBase.cs b/SocketHttpListener/HttpBase.cs
index 8504b47d7e..cc484ccdab 100644
--- a/SocketHttpListener/HttpBase.cs
+++ b/SocketHttpListener/HttpBase.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.Text;
using MediaBrowser.Model.Services;
diff --git a/SocketHttpListener/Net/AuthenticationSchemeSelector.cs b/SocketHttpListener/Net/AuthenticationSchemeSelector.cs
index c6e7e538ec..77e6d0b8ab 100644
--- a/SocketHttpListener/Net/AuthenticationSchemeSelector.cs
+++ b/SocketHttpListener/Net/AuthenticationSchemeSelector.cs
@@ -1,4 +1,4 @@
-using System.Net;
+using System.Net;
namespace SocketHttpListener.Net
{
diff --git a/SocketHttpListener/Net/AuthenticationTypes.cs b/SocketHttpListener/Net/AuthenticationTypes.cs
index 991133c296..a3dbe9dfff 100644
--- a/SocketHttpListener/Net/AuthenticationTypes.cs
+++ b/SocketHttpListener/Net/AuthenticationTypes.cs
@@ -1,4 +1,4 @@
-namespace SocketHttpListener.Net
+namespace SocketHttpListener.Net
{
internal class AuthenticationTypes
{
diff --git a/SocketHttpListener/Net/BoundaryType.cs b/SocketHttpListener/Net/BoundaryType.cs
index 8c940c25d3..da0b22910e 100644
--- a/SocketHttpListener/Net/BoundaryType.cs
+++ b/SocketHttpListener/Net/BoundaryType.cs
@@ -1,4 +1,4 @@
-namespace SocketHttpListener.Net
+namespace SocketHttpListener.Net
{
internal enum BoundaryType
{
diff --git a/SocketHttpListener/Net/ChunkedInputStream.cs b/SocketHttpListener/Net/ChunkedInputStream.cs
index e24218456c..e74c64e549 100644
--- a/SocketHttpListener/Net/ChunkedInputStream.cs
+++ b/SocketHttpListener/Net/ChunkedInputStream.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.IO;
using System.Net;
diff --git a/SocketHttpListener/Net/CookieHelper.cs b/SocketHttpListener/Net/CookieHelper.cs
index 32b46fb69b..c59756c770 100644
--- a/SocketHttpListener/Net/CookieHelper.cs
+++ b/SocketHttpListener/Net/CookieHelper.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.Collections.Generic;
using System.Globalization;
using System.Net;
diff --git a/SocketHttpListener/Net/EntitySendFormat.cs b/SocketHttpListener/Net/EntitySendFormat.cs
index cb3aa424c4..3ed981084d 100644
--- a/SocketHttpListener/Net/EntitySendFormat.cs
+++ b/SocketHttpListener/Net/EntitySendFormat.cs
@@ -1,4 +1,4 @@
-namespace SocketHttpListener.Net
+namespace SocketHttpListener.Net
{
internal enum EntitySendFormat
{
diff --git a/SocketHttpListener/Net/HttpKnownHeaderNames.cs b/SocketHttpListener/Net/HttpKnownHeaderNames.cs
index bef25ab163..dc6f2ce415 100644
--- a/SocketHttpListener/Net/HttpKnownHeaderNames.cs
+++ b/SocketHttpListener/Net/HttpKnownHeaderNames.cs
@@ -1,4 +1,4 @@
-namespace SocketHttpListener.Net
+namespace SocketHttpListener.Net
{
internal static partial class HttpKnownHeaderNames
{
diff --git a/SocketHttpListener/Net/HttpListenerBasicIdentity.cs b/SocketHttpListener/Net/HttpListenerBasicIdentity.cs
index d20e727770..391fc931ed 100644
--- a/SocketHttpListener/Net/HttpListenerBasicIdentity.cs
+++ b/SocketHttpListener/Net/HttpListenerBasicIdentity.cs
@@ -1,4 +1,4 @@
-using System.Security.Principal;
+using System.Security.Principal;
namespace SocketHttpListener.Net
{
diff --git a/SocketHttpListener/Net/HttpListenerContext.Managed.cs b/SocketHttpListener/Net/HttpListenerContext.Managed.cs
index a017d0d27f..a6622c4798 100644
--- a/SocketHttpListener/Net/HttpListenerContext.Managed.cs
+++ b/SocketHttpListener/Net/HttpListenerContext.Managed.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.ComponentModel;
using System.Security.Principal;
using System.Text;
diff --git a/SocketHttpListener/Net/HttpListenerRequest.Managed.cs b/SocketHttpListener/Net/HttpListenerRequest.Managed.cs
index 54bfa36a0d..3f9e32f089 100644
--- a/SocketHttpListener/Net/HttpListenerRequest.Managed.cs
+++ b/SocketHttpListener/Net/HttpListenerRequest.Managed.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.IO;
using System.Text;
using MediaBrowser.Model.Services;
diff --git a/SocketHttpListener/Net/HttpListenerRequestUriBuilder.cs b/SocketHttpListener/Net/HttpListenerRequestUriBuilder.cs
index ced23d9c2d..f1a0af0bf5 100644
--- a/SocketHttpListener/Net/HttpListenerRequestUriBuilder.cs
+++ b/SocketHttpListener/Net/HttpListenerRequestUriBuilder.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
diff --git a/SocketHttpListener/Net/HttpListenerResponse.Managed.cs b/SocketHttpListener/Net/HttpListenerResponse.Managed.cs
index ff4437d9e8..9097a85f53 100644
--- a/SocketHttpListener/Net/HttpListenerResponse.Managed.cs
+++ b/SocketHttpListener/Net/HttpListenerResponse.Managed.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.Globalization;
using System.IO;
using System.Net;
diff --git a/SocketHttpListener/Net/HttpRequestStream.Managed.cs b/SocketHttpListener/Net/HttpRequestStream.Managed.cs
index a0b6cba7e7..73a6735311 100644
--- a/SocketHttpListener/Net/HttpRequestStream.Managed.cs
+++ b/SocketHttpListener/Net/HttpRequestStream.Managed.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.IO;
namespace SocketHttpListener.Net
diff --git a/SocketHttpListener/Net/HttpRequestStream.cs b/SocketHttpListener/Net/HttpRequestStream.cs
index d5cbc86d84..ec3ca8d335 100644
--- a/SocketHttpListener/Net/HttpRequestStream.cs
+++ b/SocketHttpListener/Net/HttpRequestStream.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
diff --git a/SocketHttpListener/Net/HttpResponseStream.Managed.cs b/SocketHttpListener/Net/HttpResponseStream.Managed.cs
index 5fcf08d023..b4c223418a 100644
--- a/SocketHttpListener/Net/HttpResponseStream.Managed.cs
+++ b/SocketHttpListener/Net/HttpResponseStream.Managed.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.IO;
using System.Net;
using System.Net.Sockets;
diff --git a/SocketHttpListener/Net/HttpResponseStream.cs b/SocketHttpListener/Net/HttpResponseStream.cs
index 8ae7f2881a..bfe0199dee 100644
--- a/SocketHttpListener/Net/HttpResponseStream.cs
+++ b/SocketHttpListener/Net/HttpResponseStream.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
diff --git a/SocketHttpListener/Net/HttpStatusDescription.cs b/SocketHttpListener/Net/HttpStatusDescription.cs
index d0587dff73..a4e42560b9 100644
--- a/SocketHttpListener/Net/HttpStatusDescription.cs
+++ b/SocketHttpListener/Net/HttpStatusDescription.cs
@@ -1,4 +1,4 @@
-namespace SocketHttpListener.Net
+namespace SocketHttpListener.Net
{
internal static class HttpStatusDescription
{
diff --git a/SocketHttpListener/Net/UriScheme.cs b/SocketHttpListener/Net/UriScheme.cs
index 0e747154f0..33d1f09db6 100644
--- a/SocketHttpListener/Net/UriScheme.cs
+++ b/SocketHttpListener/Net/UriScheme.cs
@@ -1,4 +1,4 @@
-namespace SocketHttpListener.Net
+namespace SocketHttpListener.Net
{
internal static class UriScheme
{
diff --git a/SocketHttpListener/Net/WebHeaderEncoding.cs b/SocketHttpListener/Net/WebHeaderEncoding.cs
index a269b1eaf7..b65ff3c0d5 100644
--- a/SocketHttpListener/Net/WebHeaderEncoding.cs
+++ b/SocketHttpListener/Net/WebHeaderEncoding.cs
@@ -1,4 +1,4 @@
-using System.Text;
+using System.Text;
namespace SocketHttpListener.Net
{
diff --git a/SocketHttpListener/Net/WebSockets/HttpWebSocket.Managed.cs b/SocketHttpListener/Net/WebSockets/HttpWebSocket.Managed.cs
index 96b960f7b9..79f87dfc9c 100644
--- a/SocketHttpListener/Net/WebSockets/HttpWebSocket.Managed.cs
+++ b/SocketHttpListener/Net/WebSockets/HttpWebSocket.Managed.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.Threading.Tasks;
namespace SocketHttpListener.Net.WebSockets
diff --git a/SocketHttpListener/Net/WebSockets/WebSocketCloseStatus.cs b/SocketHttpListener/Net/WebSockets/WebSocketCloseStatus.cs
index 451b16ec30..5ac89cf480 100644
--- a/SocketHttpListener/Net/WebSockets/WebSocketCloseStatus.cs
+++ b/SocketHttpListener/Net/WebSockets/WebSocketCloseStatus.cs
@@ -1,4 +1,4 @@
-namespace SocketHttpListener.Net.WebSockets
+namespace SocketHttpListener.Net.WebSockets
{
public enum WebSocketCloseStatus
{
diff --git a/SocketHttpListener/Net/WebSockets/WebSocketValidate.cs b/SocketHttpListener/Net/WebSockets/WebSocketValidate.cs
index 2f1b428abb..0469e3b6c5 100644
--- a/SocketHttpListener/Net/WebSockets/WebSocketValidate.cs
+++ b/SocketHttpListener/Net/WebSockets/WebSocketValidate.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.Globalization;
using System.Text;
using WebSocketState = System.Net.WebSockets.WebSocketState;
diff --git a/SocketHttpListener/Primitives/ITextEncoding.cs b/SocketHttpListener/Primitives/ITextEncoding.cs
index f543cf4a54..10d95570dc 100644
--- a/SocketHttpListener/Primitives/ITextEncoding.cs
+++ b/SocketHttpListener/Primitives/ITextEncoding.cs
@@ -1,4 +1,4 @@
-using System.Text;
+using System.Text;
using MediaBrowser.Model.Text;
namespace SocketHttpListener.Primitives
diff --git a/SocketHttpListener/SocketStream.cs b/SocketHttpListener/SocketStream.cs
index 198fd36f2f..6631bb267a 100644
--- a/SocketHttpListener/SocketStream.cs
+++ b/SocketHttpListener/SocketStream.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.IO;
using System.Net.Sockets;