Skip to content

Commit

Permalink
update a broken link (mdn#18500)
Browse files Browse the repository at this point in the history
  • Loading branch information
OnkarRuikar authored Jul 19, 2022
1 parent 6d76783 commit 6ed44f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This server conforms to [RFC 6455](https://datatracker.ietf.org/doc/html/rfc6455

## First steps

WebSockets communicate over a [TCP (Transmission Control Protocol)](https://en.wikipedia.org/wiki/Transmission_Control_Protocol) connection. Luckily, C# has a [TcpListener](https://docs.microsoft.com/en-us/dotnet/api/system.net.sockets.tcplistener&view=net-6.0) class which does as the name suggests. It is in the *System.Net.Sockets* namespace.
WebSockets communicate over a [TCP (Transmission Control Protocol)](https://en.wikipedia.org/wiki/Transmission_Control_Protocol) connection. Luckily, C# has a [TcpListener](https://docs.microsoft.com/en-us/dotnet/api/system.net.sockets.tcplistener?view=net-6.0) class which does as the name suggests. It is in the *System.Net.Sockets* namespace.

> **Note:** It is a good idea to include the namespace with the `using` keyword in order to write less. It allows usage of a namespace's classes without typing the full namespace every time.
Expand Down

0 comments on commit 6ed44f2

Please sign in to comment.