GitXplorerGitXplorer
c

BrowserHttpHandlerRequestStreaming

public
2 stars
1 forks
0 issues

Commits

List of commits on branch main.
Verified
766ab7a4262cd9837da459c769742c5a509c18ee

Update README.md

ccampersau committed 10 months ago
Unverified
b44ba4db6cc2818e5abd60d21b66ea1b45deae8d

Update Blazor pages

ccampersau committed 3 years ago
Unverified
c62c3f2d32832f417a9d422fff0a3c374e0d09db

Dispose WasmRequestReadableStream when done

ccampersau committed 3 years ago
Unverified
1602de48e7ae15aa45aafeacb890e51490ae1f3f

Update to Blazor 6.0.0-preview.7.21378.6

ccampersau committed 3 years ago
Unverified
d847437f47f9efacc00fa60a98f4baca477ad9f6

Add project files.

ccampersau committed 4 years ago
Unverified
30f86fd617b4e14c6f78cb18c42fc643fad58a8b

Add .gitignore and .gitattributes.

ccampersau committed 4 years ago

README

The README file for this repository.

UPDATE

Request Streaming will be part of .NET 9: https://github.com/dotnet/runtime/pull/91295, https://github.com/dotnet/runtime/pull/91699

dotnet WASM BrowserHttpHandler with support for ReadableStream request bodies

This allows the usage of request streaming when supported. In addition to that it also needs to be opted in via:

request.Options.Set(BrowserHttpHandler.EnableStreamingRequest, true);

For streaming requests over HTTP 1 the following setting is also required:

request.SetBrowserRequestOption("allowHTTP1ForStreamingUpload", true);

Currently this feature Experimental Web Platform features needs to be enabled in chrome://flags/

Code

Resources