Skip to content

Commit b77a589

Browse files
authored
Update README.md (#1817)
1 parent a984c6d commit b77a589

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/Grpc.AspNetCore.Web/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,16 @@ app.UseEndpoints(endpoints =>
3131
});
3232
```
3333

34+
### gRPC-Web and streaming
35+
36+
Traditional gRPC over HTTP/2 supports streaming in all directions. gRPC-Web offers limited support for streaming:
37+
38+
* gRPC-Web browser clients don't support calling client streaming and bidirectional streaming methods.
39+
* gRPC-Web .NET clients don't support calling client streaming and bidirectional streaming methods over HTTP/1.1.
40+
* ASP.NET Core gRPC services hosted on Azure App Service and IIS don't support bidirectional streaming.
41+
42+
When using gRPC-Web, we only recommend the use of unary methods and server streaming methods.
43+
3444
## Links
3545

3646
* [Documentation](https://docs.microsoft.com/aspnet/core/grpc/browser)

0 commit comments

Comments
 (0)