AspNetCore.Docs/aspnetcore/grpc/deadlines-cancellation/clientfactory-propagate.cs

6 lines
161 B
C#

services
.AddGrpcClient<User.UserServiceClient>(o =>
{
o.Address = new Uri("https://localhost:5001");
})
.EnableCallContextPropagation();