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:
authorDavid Shulman <david.shulman@microsoft.com>2015-09-28 20:26:27 +0300
committerDavid Shulman <david.shulman@microsoft.com>2015-09-28 20:26:27 +0300
commit46678dc7bdf924d54cd91ae8b77ef848e4091cd9 (patch)
tree918335486d979ba282413caa940e69ba13a03127 /README.md
parentaae4427cd46cbbcd81f95bd992b70be09534f58e (diff)
System.Net changes for README.md
- Update System.Net.Security description - Add System.Net.Sockets description
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index 5618582894..8ec68763c5 100644
--- a/README.md
+++ b/README.md
@@ -93,7 +93,8 @@ More libraries are coming soon (the overall list of items we currently plan to m
|<sub>**System.Net.NameResolution**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Net.NameResolution.svg)](https://www.myget.org/gallery/dotnet-core)</sub>|<sub>Provides the System.Net.Dns class, which enables developers to perform simple domain name resolution.</sub>|
|<sub>**System.Net.Primitives**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Net.Primitives.svg)](https://www.myget.org/gallery/dotnet-core)</sub>|<sub>Provides common types for network-based libraries, including System.Net.IPAddress, System.Net.IPEndPoint, and System.Net.CookieContainer.</sub>|
|<sub>**System.Net.Requests**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Net.Requests.svg)](https://www.myget.org/gallery/dotnet-core)</sub>|<sub>Provides older classes (such as HttpWebRequest and HttpWebResponse) for sending HTTP requests and receiving HTTP responses from a resource identified by a URI. _This library is available primarily for compatibility; developers should prefer the classes in the System.Net.Http package._</sub>|
-|<sub>**System.Net.Security**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Net.Security.svg)](https://www.myget.org/gallery/dotnet-core)</sub>|<sub>Provides types, such as System.Net.Security.SslStream, that enable secure network communication between applications and hosts.</sub>|
+|<sub>**System.Net.Security**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Net.Security.svg)](https://www.myget.org/gallery/dotnet-core)</sub>|<sub>Provides types, such as System.Net.Security.SslStream, that uses SSL/TLS protocols to provide secure network communication between client and server endpoints.</sub>|
+|<sub>**System.Net.Sockets**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Net.Sockets.svg)](https://www.myget.org/gallery/dotnet-core)</sub>|<sub>Provides classes such as Socket, TcpClient and UdpClient, which enable developers to send and receive data over the network.</sub>|
|<sub>**System.Net.WebHeaderCollection**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Net.WebHeaderCollection.svg)](https://www.myget.org/gallery/dotnet-core)</sub>|<sub>Contains types that represent HTTP request and response headers. This library is used with classes such as System.Net.HttpWebRequest and System.Net.HttpWebResponse and allows developers to query/edit header names/values.</sub>|
|<sub>**System.Net.WebSockets**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Net.WebSockets.svg)](https://www.myget.org/gallery/dotnet-core)</sub>|<sub>Provides the System.Net.WebSockets.WebSocket abstract class and related types to allow developers to implement the WebSocket protocol (RFC 6455). WebSockets provide full-duplex communication over a single TCP connection.</sub>|
|<sub>**System.Net.WebSockets.Client**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Net.WebSockets.Client.svg)](https://www.myget.org/gallery/dotnet-core)</sub>|<sub>Provides the System.Net.WebSockets.ClientWebSocket class, which implements the client role of the WebSockets protocol (RFC 6455).</sub>|