Esempio n. 1
0
 public GrpcClient()
 {
     AppContext.SetSwitch("System.Net.Http.SocketsHttpHandler.Http2UnencryptedSupport", true);
     channel = GrpcChannel.ForAddress("http://localhost:6000");
     client  = new MeteoriteLandingsService.MeteoriteLandingsServiceClient(channel);
 }
Esempio n. 2
0
 public GrpcIoClient()
 {
     channel = new Channel("localhost:6000", ChannelCredentials.Insecure);
     client  = new MeteoriteLandingsService.MeteoriteLandingsServiceClient(channel);
 }