David Fowler
David Fowler
What would you like see: - [x] Documentation - [ ] Sample - [ ] Tutorial What kind of content are you looking for ? We should have a section...
- We post completion to the thread pool instead of the IIS thread pool to avoid having new requests compete with existing threads for IIS threads. We're going to use...
## Background and Motivation There are scenarios where APIs want to work directly on the response stream without buffering. Today the Stream overloads assume you have a stream that you...
There are a couple of places where async void can be used by mistake in ASP.NET applications (and minimal APIs) and we should flag this and error with an analyzer:...
This change adds support for creating users from social accounts. Those accounts are registered with the backend API in exchange for a JWT token. That token can then be used...
See https://github.com/dotnet/runtime/pull/46823 for more details. This allows EF core to show up in https://source.dot.net/ cc @alexperovich cc @bricelam
This shouldn't be enabled in production: https://github.com/dotnet/eShop/blob/3b49f61a888656b038b5f044b0d4c5096fc9f073/src/Identity.API/Program.cs#L33
There are a few places where we lack async support that result in people making blocking call. These are using during application startup. - `IAsyncStartupFilter` - https://github.com/dotnet/aspnetcore/issues/5897 - `Startup` (`ConfigureServicesAsync`,...
### What should we add or change to make your life better? Expose [this logic](https://github.com/microsoft/reverse-proxy/blob/e0bffd5a5f96ab48ffcfa97dedb71ea9df1812f2/src/ReverseProxy/Configuration/ConfigProvider/ConfigurationConfigProvider.cs#L115-L381) via a public API ### Why is this important to you? I need the ability...
I'm sure this will come up in the threat model, but we need to change how this works so that the resources only have access to what they need by...