--- title: gRPC services with ASP.NET Core author: juntaoluo description: Learn the basic concepts when writing gRPC services with ASP.NET Core. monikerRange: '>= aspnetcore-3.0' ms.author: johluo ms.date: 08/07/2019 uid: grpc/aspnetcore --- # gRPC services with ASP.NET Core This document shows how to get started with gRPC services using ASP.NET Core. ## Prerequisites # [Visual Studio](#tab/visual-studio) [!INCLUDE[](~/includes/net-core-prereqs-vs-3.0.md)] # [Visual Studio Code](#tab/visual-studio-code) [!INCLUDE[](~/includes/net-core-prereqs-vsc-3.0.md)] # [Visual Studio for Mac](#tab/visual-studio-mac) [!INCLUDE[](~/includes/net-core-prereqs-mac-3.0.md)] --- ## Get started with gRPC service in ASP.NET Core [View or download sample code](https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/tutorials/grpc/grpc-start/sample) ([how to download](xref:index#how-to-download-a-sample)). # [Visual Studio](#tab/visual-studio) See [Get started with gRPC services](xref:tutorials/grpc/grpc-start) for detailed instructions on how to create a gRPC project. # [Visual Studio Code / Visual Studio for Mac](#tab/visual-studio-code+visual-studio-mac) Run `dotnet new grpc -o GrpcGreeter` from the command line. --- ## Add gRPC services to an ASP.NET Core app gRPC requires the [Grpc.AspNetCore](https://www.nuget.org/packages/Grpc.AspNetCore) package. ### Configure gRPC gRPC is enabled with the `AddGrpc` method: [!code-csharp[](~/tutorials/grpc/grpc-start/sample/GrpcGreeter/Startup.cs?name=snippet&highlight=7)] Each gRPC service is added to the routing pipeline through the `MapGrpcService` method: [!code-csharp[](~/tutorials/grpc/grpc-start/sample/GrpcGreeter/Startup.cs?name=snippet&highlight=24)] ASP.NET Core middlewares and features share the routing pipeline, therefore an app can be configured to serve additional request handlers. The additional request handlers, such as MVC controllers, work in parallel with the configured gRPC services. ## Integration with ASP.NET Core APIs gRPC services have full access to the ASP.NET Core features such as [Dependency Injection](xref:fundamentals/dependency-injection) (DI) and [Logging](xref:fundamentals/logging/index). For example, the service implementation can resolve a logger service from the DI container via the constructor: ```csharp public class GreeterService : Greeter.GreeterBase { public GreeterService(ILogger logger) { } } ``` By default, the gRPC service implementation can resolve other DI services with any lifetime (Singleton, Scoped, or Transient). ### Resolve HttpContext in gRPC methods The gRPC API provides access to some HTTP/2 message data, such as the method, host, header, and trailers. Access is through the `ServerCallContext` argument passed to each gRPC method: [!code-csharp[](~/grpc/aspnetcore/sample/GrcpService/GreeterService.cs?highlight=3-4&name=snippet)] `ServerCallContext` does not provide full access to `HttpContext` in all ASP.NET APIs. The `GetHttpContext` extension method provides full access to the `HttpContext` representing the underlying HTTP/2 message in ASP.NET APIs: [!code-csharp[](~/grpc/aspnetcore/sample/GrcpService/GreeterService2.cs?highlight=6-7&name=snippet)] ## Additional resources * * * *