In my statement, I stated the following:
[assembly: OwinStartup("MyClass", typeof(MyClass), "ConfigureOwin")]
Launch class defined:
public class MyClass { public void ConfigureOwin(IAppBuilder appBuilder) { } }
And run owin as follows:
WebApp.Start<MyClass>("baseUri");
However, it does not work. WebApp always tries to find a method called βConfigurationβ, even if I specify to search for something else. What can I do?
c # owin
Acrotygma
source share