I found this in .NET 8 (prerelease) but I can't use it due to company policy.
May I know how can I do the same in .NET core 7?
I found this in .NET 8 (prerelease) but I can't use it due to company policy.
May I know how can I do the same in .NET core 7?
I checked the Package: Microsoft.AspNetCore.App.Ref v8.0.0-preview.3.23177.8.
And find RequestTimeouts
is the new feature in .Net 8. Currently not compatible with .Net 7 and cannot be used directly in .Net 7. If we need to achieve similar functions, we need to write custom middleware.