Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

ReadMe.txt 703 B

4 år sedan
123456789101112131415161718192021222324252627
  1. Getting started with Microsoft OWIN self-host libraries:
  2. This package contains libraries for hosting OWIN compatible HTTP components in your own process.
  3. An example Startup class is included below. The Startup class can be called from your application as follows:
  4. using (WebApp.Start<Startup>("http://localhost:12345"))
  5. {
  6. Console.ReadLine();
  7. }
  8. public class Startup
  9. {
  10. public void Configuration(IAppBuilder app)
  11. {
  12. #if DEBUG
  13. app.UseErrorPage();
  14. #endif
  15. app.UseWelcomePage("/");
  16. }
  17. }
  18. For additional information see:
  19. http://katanaproject.codeplex.com/
  20. http://aspnet.codeplex.com/SourceControl/latest#Samples/Katana/Embedded/
  21. http://aspnet.codeplex.com/
  22. http://www.owin.org/