The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) https://grpc.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Jan Tattermusch 1a33196710 upgrade helloworld example to 2.23.0 5 years ago
..
Greeter upgrade helloworld example to 2.23.0 5 years ago
GreeterClient Redo C# examples to use new Grpc.Tools 6 years ago
GreeterServer Redo C# examples to use new Grpc.Tools 6 years ago
Greeter.sln Redo C# examples to use new Grpc.Tools 6 years ago
README.md Redo C# examples to use new Grpc.Tools 6 years ago

README.md

gRPC in 3 minutes (C#)

BACKGROUND

This is a version of the helloworld example using the dotnet SDK tools to compile helloworld.proto in a common library, build the server and the client, and run them.

PREREQUISITES

You can also build the solution Greeter.sln using Visual Studio 2017, but it's not a requirement.

BUILD AND RUN

  • Build and run the server

    > dotnet run -p GreeterServer
    
  • Build and run the client

    > dotnet run -p GreeterClient
    

Tutorial

You can find a more detailed tutorial about Grpc in gRPC Basics: C#