瀏覽代碼

Removed unnecessary unsafe keywords.

Erwin de Haan 6 年之前
父節點
當前提交
fee42e883c

+ 2 - 2
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;
 

+ 1 - 1
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;

+ 1 - 1
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;

+ 1 - 1
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;

+ 1 - 1
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)