Gabriel Bider

Results 93 comments of Gabriel Bider

@szrenwei Any chance you could look into this PR?

@insanecoding Thank you, I'll try that! Yea I just realized it hasn't been updated for quite some time now :(

@philippnurullin What's the status of this issue? Did it make it into the latest release?

By name sounds most logical to me. See [here](https://github.com/Tornhoof/SpanJson/issues/148#issuecomment-727645558) on how it can be done.

> @PureKrome doesn't appear to work with .NET 3.1, complains about parameterless constructor. 😭 AFAIK, records are a C# 9 feature which only works with .NET 5 and above.

For specific endpoints I'd probably create a separate client registration. You can still reuse a lot of logic by creating an extension method.

@meinsiedler I just realized you can add a strategy conditionally by configuring the `Retry.ShouldHandle` predicate: ```csharp httpClientBuilder.AddStandardResilienceHandler(o => { o.Retry.ShouldHandle = args => args.Outcome switch { { Result.RequestMessage: not null...

The documentation on the main page hasn't been updated (is this package being maintained anymore?). I found this guide helpful instead: https://github.com/reactjs/react-transition-group/blob/70d1314d185e152b7754ab363e0ae088409858d5/Migration.md

You could profile your app to pinpoint exactly which method uses up this much memory and share the data here.