From 946874eb0452f45c2b26b757ff4951ea52142293 Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 25 Aug 2020 21:21:20 +0900 Subject: [PATCH] [Modify] Remove it --- .../Net/HttpListenerPrefixCollection.cs | 21 ------------------- 1 file changed, 21 deletions(-) diff --git a/websocket-sharp/Net/HttpListenerPrefixCollection.cs b/websocket-sharp/Net/HttpListenerPrefixCollection.cs index b5b89354..4b47ed3b 100644 --- a/websocket-sharp/Net/HttpListenerPrefixCollection.cs +++ b/websocket-sharp/Net/HttpListenerPrefixCollection.cs @@ -199,27 +199,6 @@ namespace WebSocketSharp.Net return _prefixes.Contains (uriPrefix); } - /// - /// Copies the contents of the collection to the specified array. - /// - /// - /// An that receives the URI prefix strings in - /// the collection. - /// - /// - /// An that specifies the zero-based index in - /// the array at which copying begins. - /// - /// - /// The instance associated with - /// this collection is closed. - /// - public void CopyTo (Array array, int offset) - { - _listener.CheckDisposed (); - ((ICollection) _prefixes).CopyTo (array, offset); - } - /// /// Copies the contents of the collection to the specified array of string. ///