Arvin Kahbazi
Arvin Kahbazi
### Background and motivation Let's say we want to chain multiple limiter together. Limiters based on IP, Username and Endpoint. Now if I want to skip limiters for some IPs,...
Fixes https://github.com/dotnet/aspnetcore/issues/43042
## Background and Motivation Mark action deprecated in Minimal APIs, so it could be shown in Open API.  ## Proposed API ```csharp namespace Microsoft.AspNetCore.Builder { public static class OpenApiEndpointConventionBuilderExtensions...
# Only create context if an event is set There are multiple events in CookieAuthenticationHandler and each has its own context type which some of them are created per request...
`PolicyAuthorizationResult` is immutable. It could be stored and reused to avoid allocation.
Watching your stream, you mentioned people might have some javascript which depends on the html that webforms is creating. Does that mean that we should render the ID property in...
Let's say we have a code like this : ``` [assembly: LogAdvice] [IncludePointcut("*Add")] public class LogAdviceAttribute : Attribute, IMethodAsyncAdvice { public async Task Advise(MethodAsyncAdviceContext context) { Console.WriteLint("Entry"); await context.ProceedAsync(); Console.WriteLint("Exit");...
Fixes https://github.com/open-telemetry/opentelemetry-dotnet-contrib/issues/1451. ## Changes Added a new overload to `AddRedisInstrumentation` which gets `serviceKey` in input and get `IConnectionMultiplexer` with a keyed service. For significant contributions please make sure you have...
# Issue with OpenTelemetry.Instrumentation.StackExchangeRedis **Is this a feature request or a bug?** * [x] Feature Request * [ ] Bug Currently there's two way to have Redis instrumentation. With passing...