Info
Version: | 0.2.6 |
Author(s): | Daniel Cazzulino, kzu, Clarius |
Last Update: | Wednesday, December 10, 2014 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/clariuslabs/reactivesockets |
NuGet Url: | https://www.nuget.org/packages/ReactiveSockets |
Install
Install-Package ReactiveSockets
dotnet add package ReactiveSockets
paket add ReactiveSockets
ReactiveSockets Download (Unzip the "nupkg" after downloading)
Dependencies
- Rx-Main(2.2.5)
Tags
Example:
from header in socket.Receiver.Buffer(4)
let length = BitConverter.ToInt32(header.ToArray(), 0)
let body = socket.Receiver.Take(length)
select Encoding.UTF8.GetString(body.ToEnumerable().ToArray()).