diff options
| author | Bond-009 <bond.009@outlook.com> | 2019-01-30 16:55:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-30 16:55:07 +0100 |
| commit | d0f2b3a747a015789326793d7b5f480748815f9b (patch) | |
| tree | 15788fd4967e90039432b9036428b25200490ca8 /SocketHttpListener | |
| parent | 08b63a7c11d5db9126c48e644b090223f86f0eb8 (diff) | |
| parent | ffcf6bdd3aaad5068decf84b0400e433fdb8323c (diff) | |
Merge branch 'master' into startuptasks
Diffstat (limited to 'SocketHttpListener')
| -rw-r--r-- | SocketHttpListener/Net/HttpListenerContext.Managed.cs | 4 | ||||
| -rw-r--r-- | SocketHttpListener/Net/HttpListenerContext.cs | 2 | ||||
| -rw-r--r-- | SocketHttpListener/Net/HttpListenerRequest.cs | 2 | ||||
| -rw-r--r-- | SocketHttpListener/Net/HttpListenerResponse.cs | 2 | ||||
| -rw-r--r-- | SocketHttpListener/Net/WebHeaderEncoding.cs | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/SocketHttpListener/Net/HttpListenerContext.Managed.cs b/SocketHttpListener/Net/HttpListenerContext.Managed.cs index 29b0a7ae2..79742bf37 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; @@ -7,7 +7,7 @@ using SocketHttpListener.Net.WebSockets; namespace SocketHttpListener.Net { - public sealed unsafe partial class HttpListenerContext + public sealed partial class HttpListenerContext { private HttpConnection _connection; diff --git a/SocketHttpListener/Net/HttpListenerContext.cs b/SocketHttpListener/Net/HttpListenerContext.cs index 8045299c6..d84e2d1aa 100644 --- a/SocketHttpListener/Net/HttpListenerContext.cs +++ b/SocketHttpListener/Net/HttpListenerContext.cs @@ -6,7 +6,7 @@ using SocketHttpListener.Net.WebSockets; namespace SocketHttpListener.Net { - public sealed unsafe partial class HttpListenerContext + public sealed partial class HttpListenerContext { private HttpListenerResponse _response; private IPrincipal _user; diff --git a/SocketHttpListener/Net/HttpListenerRequest.cs b/SocketHttpListener/Net/HttpListenerRequest.cs index 4924a7fa8..faeca78b2 100644 --- a/SocketHttpListener/Net/HttpListenerRequest.cs +++ b/SocketHttpListener/Net/HttpListenerRequest.cs @@ -8,7 +8,7 @@ using SocketHttpListener.Net.WebSockets; namespace SocketHttpListener.Net { - public sealed unsafe partial class HttpListenerRequest + public sealed partial class HttpListenerRequest { private CookieCollection _cookies; private bool? _keepAlive; diff --git a/SocketHttpListener/Net/HttpListenerResponse.cs b/SocketHttpListener/Net/HttpListenerResponse.cs index a32aca043..66ef88564 100644 --- a/SocketHttpListener/Net/HttpListenerResponse.cs +++ b/SocketHttpListener/Net/HttpListenerResponse.cs @@ -5,7 +5,7 @@ using System.Text; namespace SocketHttpListener.Net { - public sealed unsafe partial class HttpListenerResponse : IDisposable + public sealed partial class HttpListenerResponse : IDisposable { private BoundaryType _boundaryType = BoundaryType.None; private CookieCollection _cookies; diff --git a/SocketHttpListener/Net/WebHeaderEncoding.cs b/SocketHttpListener/Net/WebHeaderEncoding.cs index b65ff3c0d..96e0cc85d 100644 --- a/SocketHttpListener/Net/WebHeaderEncoding.cs +++ b/SocketHttpListener/Net/WebHeaderEncoding.cs @@ -71,7 +71,7 @@ namespace SocketHttpListener.Net } } } - internal static unsafe byte[] GetBytes(string myString) + internal static byte[] GetBytes(string myString) { byte[] bytes = new byte[myString.Length]; if (myString.Length != 0) |
