Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 805 Bytes

README_Net_Client.md

File metadata and controls

21 lines (13 loc) · 805 Bytes

Api Gateway Client (.Net)

Packages Version & Downloads
AspNetCore.ApiGateway.Client NuGet Version and Downloads count

The .Net client application can talk to the Api Gateway using the Client.

.Net Client

Wire up the Client for dependency injection in your app, using an extension.

services.AddApiGatewayClient(settings => settings.ApiGatewayBaseUrl = "http://localhost");

Then, you can inject IApiGatewayClient in your app.

You can go through these Integration Tests to see how the Client is used.

.Net Client Integraton Tests