Browse Source

Merge pull request #10880 from abpframework/berkan/style-fix-in-doc

Style fix for code block in `Dynamic-CSharp-API-Clients` document
pull/10881/head
Engincan VESKE 4 years ago
committed by GitHub
parent
commit
e1d8e56572
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      docs/en/API/Dynamic-CSharp-API-Clients.md

6
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.
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.

Loading…
Cancel
Save