Chris Ross

Results 447 comments of Chris Ross
trafficstars

@blowdart @BillHiebert This would need to be accompanied with template and tooling changes to get the right fields populated in config.

Template code: https://github.com/aspnet/Templating/blob/master/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/appsettings.json

https://github.com/aspnet/AADIntegration/issues/50

> Calling `HttpContext!.Features.Get()!.DisableBuffering()` fixes the issue when running under IIS/IIS Express. That's expected, SignalR's SSE implementation has to do the same. Are you still having issues, or are you just...

This has to do with built in write buffers in the stack. We don't know when the client is going to call Read, we only know they want us to...

How much control do you have over the client? Can you have them send `range` requests?

Try this: https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.mvc.fileresult.enablerangeprocessing?view=aspnetcore-8.0#microsoft-aspnetcore-mvc-fileresult-enablerangeprocessing

Here's an interesting example where you can limit the range: https://stackoverflow.com/questions/48156306/html-5-video-tag-range-header This would require some manual limiting on the filestream, or you could modify the request range header before generating...

We've reviewed this in the past and determined that it doesn't matter, the session key is not a unique id. Once the user object is removed from the session cache...