Ngô Quốc Toản
Ngô Quốc Toản
### Steps to reproduce `` ### Current behavior An error occurs when used with the Rating component. My application is multilingual. If I use English language there are no errors...
Could you consider using [**wolverine** ](https://github.com/JasperFx/wolverine) instead of MediatR and message bus in .NET 8? The as described by the repository, Wolverine is Next Generation .NET Mediator and Message Bus.
In BlazorWasm, refit doesn't work ``` .AddRefitClient() .ConfigureHttpClient(client => { client.BaseAddress = new Uri(config[ConfigNames.ApiBaseUrl]); client.DefaultRequestHeaders.Add("User-Agent", "fullstackhero blazorwasm v22.10"); }) .ConfigurePrimaryHttpMessageHandler(() => new SocketsHttpHandler { SslOptions = new SslClientAuthenticationOptions { RemoteCertificateValidationCallback...
We are very grateful for the author's efforts to contribute to the C# community with a quality chat bot from Telegram. By the time of asking this question, Telegram chat...
I'm having to manually backup and restore my collection every time I reset my device, or I'm simply on Android and it doesn't sync with Windows.
First of all, I appreciate the team's effort to create a great library, simple to use WinUI. However, System.Text.Json library is also great, why don't we use them instead of...
I found a reference to the Polly.Extensions.Http package in your project, and this version is outdated since 2019, no longer supported by Polly, while the alternative version [Microsoft.Extensions.Http.Resilience](https://www.nuget.org/packages/Microsoft.Extensions.Http.Resilience/9.0.0) is recommended....
### Version 6.5 ### Platform .NET 9 / Windows 11 ### Steps to reproduce ### Summary I want to download private videos after having the Youtube cookie file. I tried...
``` public interface IMyApi { [Multipart] [Put("")] Task UploadFileAsync([Url] string dynamicUrl, StreamPart stream, CancellationToken cancellationToken = default); } ``` ``` await api.UploadFileAsync( presignedUrl, new StreamPart(new MemoryStream(fileContent), request.FileName), cancellationToken).ConfigureAwait(false); ``` When...