-
Notifications
You must be signed in to change notification settings - Fork 5
Home
Mattias Åslund edited this page Jan 22, 2018
·
7 revisions
The SocketMessaging package simplifies the usage of System.Net.Sockets
by solving two problems:
-
It hides the need for polling constantly polling the connection to ensure it is still up and receive data.
-
It optionally sends and receives data as formatted messages, making it much easier to know when you have received a complete message and tell different messages apart.
The easiest way to install SocketMessaging is by NuGet. Run the following command in the Visual Studio Package Manager Console:
Install-Package SocketMessaging
- Please read the README file.
- See the API section for a complete API description.
- Check out the Usage examples for working code examples of how to use the package.