File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments