I\'m self-hosting ASP.NET Web API and SignalR using OWIN. I start the server (on a console app) with this code:
using (WebApplication.Start(url))
The WebApplication.Start
method has an overload that accepts a IServiceProvider
as parameter, so it is possible to inject the data I want.
IServiceProvider serviceProvider = DefaultServices.Create(defaultServiceProvider =>
{
defaultServiceProvider.AddInstance<IMyInterface>(myInstance);
});
using (WebApplication.Start<Startup>(serviceProvider, url)){ ... }
Now, on my Startup
class I only need to create a constructor that receives the IMyInterface:
public Startup(IMyInterface myInstance)
{
...
}
You can use the WebApp.Start Method (String, Action<IAppBuilder>) overload.
Example:
using (WebApplication.Start(url, appBuilder => new Startup(myObject).Configuration(appBuilder)))
{
Console.WriteLine("Running...");
Console.ReadLine();
}