Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Baulig <mabaul@microsoft.com>2019-09-12 18:55:58 +0300
committerMartin Baulig <mabaul@microsoft.com>2019-09-12 18:55:58 +0300
commit0239c380adf722685dd0720d10e7395da9f73e99 (patch)
tree540e6403b35b9a778dbff8cb282ff9c55c1f593c
parente79cf5bb4f1665b68e043a20df7f6c6ba5b4e629 (diff)
Make `NetworkStream` partial.
-rw-r--r--src/System.Net.Sockets/src/System/Net/Sockets/NetworkStream.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Net.Sockets/src/System/Net/Sockets/NetworkStream.cs b/src/System.Net.Sockets/src/System/Net/Sockets/NetworkStream.cs
index d8ab22b135..cf1caa63f4 100644
--- a/src/System.Net.Sockets/src/System/Net/Sockets/NetworkStream.cs
+++ b/src/System.Net.Sockets/src/System/Net/Sockets/NetworkStream.cs
@@ -12,7 +12,7 @@ using System.Threading.Tasks;
namespace System.Net.Sockets
{
// Provides the underlying stream of data for network access.
- public class NetworkStream : Stream
+ public partial class NetworkStream : Stream
{
// Used by the class to hold the underlying socket the stream uses.
private readonly Socket _streamSocket;