Giter Site home page Giter Site logo

engineioclientdotnet's Introduction

EngineIoClientDotNet

====================

Engine.IO Client Library for .Net

This is the Engine.IO Client Library for C#, which is ported from the JavaScript client.

Installation

Nuget install:

Install-Package EngineIoClientDotNet
  • NuGet Package: EngineIoClientDotNet

Usage

EngineIoClientDotNet has a similar api to those of the JavaScript client.

You can use Socket to connect:

var socket = new Socket("ws://localhost");
socket.On(Socket.EVENT_OPEN, () =>
{
	socket.Send("hi", () =>
	{		
		socket.Close();
	});
});
socket.Open();

Receiving data

var socket = new Socket("ws://localhost");
socket.On(Socket.EVENT_OPEN, () =>
{
	socket.On(Socket.EVENT_MESSAGE, (data) =>
	{
		Console.WriteLine((string)data);
	});
});
socket.Open();            

Features

This library supports all of the features the JS client does, including events, options and upgrading transport.

Tests

Run tests on windows or linux:

git clone https://github.com/Quobject/EngineIoClientDotNet.git
cd EngineIoClientDotNet/grunt
npm install

Update config.json and add line to hosts file: 127.0.0.1 testme.quobject.com.

grunt

This will start test server and xunit tests for windows.

In linux this will stop after starting test server. Start xunit tests within a new linux terminal:

grunt testClient

Framework Versions

.NETFramework v3.5, .NETFramework v4.0, .NETFramework v4.5

License

MIT

engineioclientdotnet's People

Contributors

mattqs avatar gmetaxakis avatar costo avatar gamer3dx avatar kraigm avatar dil-spayne avatar tascsystems avatar pkrizan avatar mkvoya avatar mattleibow avatar supermaciz avatar murrayju avatar fatjohn avatar jlewin avatar jefstat avatar re-cheid avatar chrisprt avatar murf avatar

Watchers

Mick Rippon avatar Mitch Malone avatar James Cloos avatar Sebastien Eckersley-Maslin avatar David Grieve avatar Build Server avatar  avatar Shane avatar  avatar Ting avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.