Skip to content

Commit 20a6cd0

Browse files
author
Yi Zhong
committed
modify toc
1 parent fa3db7a commit 20a6cd0

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

articles/iot-hub/TOC.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -144,14 +144,15 @@
144144
#### [Query language](iot-hub-devguide-query-language.md)
145145
#### [Quotas and throttling](iot-hub-devguide-quotas-throttling.md)
146146
#### [Pricing examples](iot-hub-devguide-pricing.md)
147-
#### [Device and service SDKs](iot-hub-devguide-sdks.md)
148147
#### [MQTT support](iot-hub-mqtt-support.md)
149148
#### [Glossary](iot-hub-devguide-glossary.md)
150-
### [Use the IoT device SDK for C](iot-hub-device-sdk-c-intro.md)
151-
#### [Use the IoTHubClient](iot-hub-device-sdk-c-iothubclient.md)
152-
#### [Use the serializer](iot-hub-device-sdk-c-serializer.md)
153-
### [Develop for constrained devices](iot-hub-devguide-develop-for-constrained-devices.md)
154-
### [Develop for mobile devices](iot-hub-how-to-develop-for-mobile-devices.md)
149+
### [Use device and service SDKs](iot-hub-devguide-sdks.md)
150+
#### [Use the IoT device SDK for C](iot-hub-device-sdk-c-intro.md)
151+
##### [Use the IoTHubClient](iot-hub-device-sdk-c-iothubclient.md)
152+
##### [Use the serializer](iot-hub-device-sdk-c-serializer.md)
153+
#### [Develop for constrained devices](iot-hub-devguide-develop-for-constrained-devices.md)
154+
#### [Develop for mobile devices](iot-hub-how-to-develop-for-mobile-devices.md)
155+
#### [Manage connectivity and reliable messaging](iot-hub-reliability-features-in-sdks.md)
155156
### [Query Avro data from a hub route](iot-hub-query-avro-data.md)
156157
### Send cloud-to-device messages
157158
#### [.NET](iot-hub-csharp-csharp-c2d.md)

articles/iot-hub/iot-hub-reliability-features-in-sdks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ Three retry policies are provided:
7070

7171
| SDK | SetRetryPolicy method | Policy implementations | Implementation guidance |
7272
|-----|----------------------|--|--|
73-
| C | Not available | | |
73+
| C/Python/iOS | Not available | | |
7474
| Java| Not available | | |
7575
| .NET| [DeviceClient.SetRetryPolicy](/dotnet/api/microsoft.azure.devices.client.deviceclient.setretrypolicy?view=azure-dotnet#Microsoft_Azure_Devices_Client_DeviceClient_SetRetryPolicy_Microsoft_Azure_Devices_Client_IRetryPolicy) | **Default**: [ExponentialBackoff class](/dotnet/api/microsoft.azure.devices.client.exponentialbackoff?view=azure-dotnet)<BR>**Custom:** implement [IRetryPolicy interface](https://docs.microsoft.com/dotnet/api/microsoft.azure.devices.client.iretrypolicy?view=azure-dotnet)<BR>**No retry:** [NoRetry class](/dotnet/api/microsoft.azure.devices.client.noretry?view=azure-dotnet) | [C# example](#net-implementation-guidance) |
7676
| Node| [setRetryPolicy](/javascript/api/azure-iot-device/client?view=azure-iot-typescript-latest#azure_iot_device_Client_setRetryPolicy) | **Default**: [ExponentialBackoffWithJitter class](/javascript/api/azure-iot-common/exponentialbackoffwithjitter?view=azure-iot-typescript-latest)<BR>**Custom:** implement [RetryPolicy interface](/javascript/api/azure-iot-common/retrypolicy?view=azure-iot-typescript-latest)<BR>**No retry:** [NoRetry class](/javascript/api/azure-iot-common/noretry?view=azure-iot-typescript-latest) | [Node example](#node-implementation-guidance) |
77-
| Python| Not available | | |
77+
7878

7979
Below are code examples that illustrates this flow.
8080

0 commit comments

Comments
 (0)