Skip to content

Files

Latest commit

d7cec93 · Apr 15, 2024

History

History
This branch is 82 commits behind dodyg/practical-aspnetcore:net8.0.

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Apr 15, 2024
Apr 15, 2024
Apr 15, 2024
Apr 15, 2024
Apr 15, 2024
Apr 15, 2024
Apr 15, 2024
Apr 15, 2024
Apr 15, 2024
Apr 15, 2024
Apr 15, 2024
Apr 15, 2024
Apr 15, 2024
Apr 15, 2024
Apr 15, 2024
Apr 15, 2024
Apr 15, 2024
Mar 9, 2024
Mar 2, 2024

GRPC (12)

gRPC-Web

This is a version of gRPC that runs on HTTP 1.1 and support Unary call and Server Streaming. Client Streaming and bi-Directional Streaming are not supported.

gRPC-Web has been released. You can find the details here.

  • Unary - Hello World

    This sample shows a simple request/response gRPC call.

  • Server Streaming - Message Server

    This sample shows how to do simple gRPC sever streaming.

  • Server Streaming - Message Server - Blazor Web Assembly

    This sample shows how to do simple gRPC sever streaming with Blazor Web Assembly client.

  • gRPC - 13

    This sample shows how to make a GET HTTP call to a gRPC endpoint via gRPC JSON transcoding.

  • gRPC - 14

    This sample shows how to make a POST HTTP call to a gRPC endpoint via gRPC JSON transcoding.

  • gRPC - 15

    This sample shows how to make a POST HTTP call to a gRPC endpoint via gRPC JSON transcoding by combining route parameter and body.

  • gRPC - 16

    This sample shows how to make a PUT HTTP call to a gRPC endpoint via gRPC JSON transcoding.

  • gRPC - 17

    This sample shows how to make a PATCH HTTP call to a gRPC endpoint via gRPC JSON transcoding.

Other collections of gRPC samples

dotnet8