-
Notifications
You must be signed in to change notification settings - Fork 236
Expand file tree
/
Copy pathStartup.cs
More file actions
37 lines (31 loc) · 1.13 KB
/
Startup.cs
File metadata and controls
37 lines (31 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using GrpcGreeter.Services;
namespace GrpcGreeter;
public class Startup
{
public IConfiguration Configuration { get; }
public Startup(IConfiguration configuration)
{
this.Configuration = configuration;
}
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
// Add services to the container.
services.AddGrpc();
services.AddGrpcReflection();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
app.UseRouting();
app.UseEndpoints(b =>
{
// Configure the HTTP request pipeline.
b.MapGrpcService<GreeterService>();
b.MapGet("/",
() =>
"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");
b.MapGrpcReflectionService();
});
}
}