我正在尝试将.proto
文件中的输出转换为JSON格式
var input = new HelloRequest {
Name = "Tim"
};
var channel = GrpcChannel.ForAddress("https://localhost:5001");
var client = new Greeter.GreeterClient(channel); //Instantiate grpc server call
var reply = await client.SayHelloAsync(input);
我想转换以JSON格式获得的“回复”,代码位于.net核心。