客户端

优质
小牛编辑
150浏览
2023-12-01

客户端调用服务端

服务端的proto文件copy到客户端

获取grpc客户端

//sample 为服务名称
var client = await provider.FindGrpcClient<RpcTest.RpcTestClient>("sample");

调用服务方法

var result = await client.SayHelloAsync(new HelloRequest() { Age = 28, Name = "simple" });