Created
December 28, 2019 06:42
-
-
Save gistlyn/251a2ac77b84efeaeef264f982ee80eb to your computer and use it in GitHub Desktop.
Insecure C# gRPC Generic ServiceClient TodoWorld Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Threading.Tasks; | |
using ServiceStack; | |
using TodoWorld.ServiceModel; | |
namespace TodoWorld | |
{ | |
class Program | |
{ | |
public static async Task Main(string[] args) | |
{ | |
ProtoBuf.Grpc.Client.GrpcClientFactory.AllowUnencryptedHttp2 = true; | |
var client = new GrpcServiceClient("http://todoworld.servicestack.net:5054"); | |
var response = await client.GetAsync(new Hello { Name = "gRPC C#" }); | |
Console.WriteLine(response.Result); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment