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.