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.
- Host: GitHub
- URL: https://github.com/gsscoder/owinhttplistener
- Owner: gsscoder
- Created: 2013-02-14T17:29:05.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-02-25T13:08:40.000Z (over 12 years ago)
- Last Synced: 2024-12-28T15:34:07.650Z (6 months ago)
- Language: C#
- Homepage:
- Size: 1.13 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)