An open API service indexing awesome lists of open source software.

https://github.com/gsscoder/owinhttplistener

Sample Owin HTTP listener for .NET 4.5.
https://github.com/gsscoder/owinhttplistener

Last synced: 4 months ago
JSON representation

Sample Owin HTTP listener for .NET 4.5.

Awesome Lists containing this project

README

        

Owin HTTP Listener 0.1.0.8 pre.
===
Sample Owin HTTP listener for .NET 4.5. This library uses Owin.Types from [http://www.myget.org/F/owin/](http://www.myget.org/F/owin/)
and [HttpHelpers](https://github.com/gsscoder/httphelpers).

What is it:
---
- Nothing more than sample.
- Plase note that this project is in **early stages of development**.

At glance:
---
```csharp
using AppFunc = Func, Task>;

var listener = new OwinHttpListener(
new OwinApplication().ProcessRequest, // with AppFunc signature
8899); // localhost:8899
server.Start();

listener.ListenAsync().Wait();

Console.ReadKey();

listener.Stop();
```

Contacts:
---
Giacomo Stelluti Scala
- gsscoder AT gmail DOT com
- [Blog](http://gsscoder.blogspot.it)
- [Twitter](http://twitter.com/gsscoder)