-
The Owin Middleware and the ASP.net Core Middleware share almost 80% of the code. In order to be able to maintain both without copying code we need to move the code that is essentially the same into a…
-
For example:
``` csharp
[CommandRoute(typeof(IgnoreBob), typeof(SayHello))]
```
We could also decorate the command handlers with HTTP Verb attributes to add route constraints... although I think I m…
-
### Describe your problem!
A user contacted us, that he is unable to change the watchlist status on some of his stored GC caches.
It turned out, that this happens if the watchlist state is not syn…
-
Please mark the type framework used:
- [ ] ASP.NET MVC
- [ ] ASP.NET Web API (OWIN)
- [x] ASP.NET Core
- [ ] WPF
- [ ] WinForms
- [ ] Xamarin
- [ ] Other:
Please mark the type of the runti…
tengl updated
8 months ago
-
Hi, I have api on iis server behind basic windows authentication and i cannot use cors. So I tried to use this module but however I configure it I cannot log into api and I get 401 every time
I tried…
-
The current action of IClaimsTransformation provides non-deterministic identity types on IPrincipal. For example, in the simple scenario where cookies are enabled, IClaimsTransformation does not get r…
-
Normally, I would expect to see something like `await Hub.Clients.All.SendAsync("QueueCountChanged", currentCount);`. It doesn't try to do anything fancy with the Uri or connection, because SignalR ha…
-
ServiceFabric AspNetCore middleware has an option ServiceFabricIntegrationOptions.UseUniqueServiceUrl. This option generates service-specific unique urls - which makes ServiceFabric telemetry difficul…
-
`Nexogen.Libraries.Metrics.Prometheus.AspCore.HttpMetricsMiddleware` measures endpoint response times and collects them labelled by http methods, response codes and endpoint paths.
However these pa…
-
I'm using Nswag 13.1.2 in .NET Core 3.0.0.
I'm trying to add new Server and Scheme to my swagger document.
```
services.AddOpenApiDocument(c =>
{
c.PostProcess = d =>
{
d.Schemes.Add(Open…