We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b9ca1a commit de435bfCopy full SHA for de435bf
MyApp/_pages/http-utils.md
@@ -90,10 +90,8 @@ The HttpClient HttpUtils use a lazy singleton for efficiency however if you're u
90
public class AppHost : AppHostBase, IHostingStartup
91
{
92
public void Configure(IWebHostBuilder builder) => builder
93
- .ConfigureServices(services => services.AddHttpUtilsClient())
94
- .Configure(app => {
95
- if (!HasInit)
96
- app.UseServiceStack(new AppHost());
+ .ConfigureServices(services => {
+ services.AddHttpUtilsClient();
97
});
98
}
99
```
0 commit comments