Skip to content

Instantly share code, notes, and snippets.

@bvanderveen
Created December 22, 2010 09:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bvanderveen/751297 to your computer and use it in GitHub Desktop.
Save bvanderveen/751297 to your computer and use it in GitHub Desktop.
OWIN, take 2
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Owin
{
public struct OwinResponse
{
public string Status;
public IDictionary<string, IEnumerable<string>> Headers;
public IEnumerable<object> Body;
}
public delegate Task<OwinResponse> OwinApp(IDictionary<string, object> env);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment