From b17a3cf1d9dff6c6a12a9093193da7133163ae13 Mon Sep 17 00:00:00 2001 From: Berkan Sasmaz Date: Wed, 8 Dec 2021 11:04:18 +0300 Subject: [PATCH] Update Dynamic-CSharp-API-Clients.md --- docs/en/API/Dynamic-CSharp-API-Clients.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/API/Dynamic-CSharp-API-Clients.md b/docs/en/API/Dynamic-CSharp-API-Clients.md index b71e6b88b9..31032e6392 100644 --- a/docs/en/API/Dynamic-CSharp-API-Clients.md +++ b/docs/en/API/Dynamic-CSharp-API-Clients.md @@ -74,7 +74,7 @@ public class MyClientAppModule : AbpModule `RemoteServices` section in the `appsettings.json` file is used to get remote service address by default. Simplest configuration is shown below: -```` +```json { "RemoteServices": { "Default": { @@ -82,7 +82,7 @@ public class MyClientAppModule : AbpModule } } } -```` +``` See the "AbpRemoteServiceOptions" section below for more detailed configuration. @@ -203,4 +203,4 @@ public override void PreConfigureServices(ServiceConfigurationContext context) } ```` -This example uses the [Microsoft.Extensions.Http.Polly](https://www.nuget.org/packages/Microsoft.Extensions.Http.Polly) package. You also need to import the `Polly` namespace (`using Polly;`) to be able to use the `WaitAndRetryAsync` method. \ No newline at end of file +This example uses the [Microsoft.Extensions.Http.Polly](https://www.nuget.org/packages/Microsoft.Extensions.Http.Polly) package. You also need to import the `Polly` namespace (`using Polly;`) to be able to use the `WaitAndRetryAsync` method.