-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Closed
Description
https://learn.microsoft.com/en-us/dotnet/fundamentals/networking/sockets/sockets-overview
Describe the tasks
In an offline discussion with @antonfirsov @dotnet/ncl team, we have decided to do following tasks on conceptual docs:
- Repurpose
Use Sockets to send and receive dataasUse Sockets to send and receive data over TCP. - Merge all content under
TCPasUse TcpClient and TcpListenerand move it under theSockets. - Add a remark to
Use TcpClient and TcpListener, that we recommend usingSocketclass directly, instead of it. - Create an article for UDP (
Use Sockets to send and receive data over UDP) (???) - Create an article to show
TcpClientusages equivalent toSocketunderUse TcpClient and TcpListener. - Explain
socket statesandlistening,connectingandaccepting.
All other ideas and feedback are appreciated.
CC @dotnet/docs @IEvangelist
IEvangelist