Mohsen Rajabi
Mohsen Rajabi
im using ```csharp services.AddMetricServer(options => { options.Port = 1234; }); //appsetting "Kestrel": { "Endpoints": { "Http": { "Url": "http://localhost:8078" }, "Grpc": { "Url": "http://localhost:8098", "Protocols": "Http2" } } } ```...
Consider the following test. It takes about 3 minutes to run. Can I reduce this time? ```csharp private static readonly Assembly[] AssembliesService = Assemblies .Where(r => r.FullName!.Contains("ind", StringComparison.OrdinalIgnoreCase) && r.FullName.Contains("service",...
Dic type can be used in C#. The use of this type is common in appsetting. When this type is used, we face problems in the configuration. I suggest that...
I am using the 2 kv version. This version 1 seems to have changed in newer versions of vault. I can not use your package and load my keys in...
Thank you for the great package you wrote. After installing the package, I witnessed that all the tests in the classes were executed in parallel at the same time. But...
## New Feature - add rate limit with ip address - add StackBlockedRequests - add custom rate limit store(sql server, redis,...) read header key in config add IpWhitelist in config...
## Proposed changes `Regex` improvements: - set option compile - set timeout - set static object (`Regex` class is in mutable) ## Links Microsoft Docs: [Best Practices for Regular Expressions...
I use dotnet format. Now I have the following error Changing document properties is not supported I even ran with this command, but the file that causes the error does...
If you activate HTTP/2, it is better to activate the `SocketsHttpHandler.EnableMultipleHttp2Connections` configuration as well, which gives good results. ## Docs - [What is HTTP/2 multiplexing?](https://medium.com/@neelendra1destiny/what-is-http-2-multiplexing-72a400cd33b7) - [MS Learn | .NET...