DillionVVV
DillionVVV
### Type of issue Other (describe below) ### Description From this document: https://learn.microsoft.com/en-us/dotnet/api/system.servicemodel.channels.securitybindingelement?view=net-8.0  we can see the `SecurityBindingElement` class contain the `CreateMutualCertificateBindingElement` Method, but when we use it in...
### Is there an existing issue for this? - [x] I have searched the existing issues ### Describe the bug I create a Blazor web application via the Blazor Web...
### Describe the bug I notice when running the application it uses my custom culture for half a second, then updates and goes back to the default CultureInfo properties for...
I am using [.Net RateLimiting][1] and specifically the TokenBucketRateLimiter. Example: ``` services.AddRateLimiter(limiterOptions => { limiterOptions.AddPolicy(userPolicyName, context => { string username = Utils.getUsername(context); return RateLimitPartition.GetTokenBucketLimiter (username , _ => new TokenBucketRateLimiterOptions...