コード例 #1
0
ファイル: Startup.cs プロジェクト: raikay/Demo
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }

            app.UseRouting();

            app.UseAuthorization();


            app.UseEndpoints(endpoints =>
            {
                endpoints.MapGet("/", async context =>
                {
                    OrderGrpcClient service = context.RequestServices.GetService <OrderGrpcClient>();

                    try
                    {
                        var r = service.CreateOrder(new CreateOrderCommand {
                            BuyerId = "abc"
                        });
                    }
                    catch (Exception ex)
                    {
                    }

                    await context.Response.WriteAsync("Hello World!");
                });
            });
        }
コード例 #2
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }

            app.UseRouting();

            app.UseEndpoints(endpoints =>
            {
                endpoints.MapGet("/", async context =>
                {
                    // 2. 获取grpc客户端服务,并调用接口
                    OrderGrpcClient service = context.RequestServices.GetService <OrderGrpcClient>();
                    try
                    {
                        var r = service.CreateOrder(new CreateOrderCommand {
                            BuyerId = "abc"
                        });
                    }
                    catch (Exception ex)
                    {
                    }

                    await context.Response.WriteAsync("Communication with gRPC endpoints must be made through a gRPC client. To learn how to create a client, visit: https://go.microsoft.com/fwlink/?linkid=2086909");
                });
            });
        }