You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ You have 2 options to provide the right Azure IoT TLS certificate:
34
34
- Pass it in the constructor
35
35
- Store it into the device
36
36
37
-
The [AzureCertificate](AzureCertificate) contains, for your convenience, the root certificated used to connect to Azure IoT. The current one, Baltimore Root CA is the one to use up to June 2022. Starting in June 2022, the Digicert Global Root 2 is the one to use. For more information, please read the following [blog](https://techcommunity.microsoft.com/t5/internet-of-things/azure-iot-tls-critical-changes-are-almost-here-and-why-you/ba-p/2393169).
37
+
The [AzureCertificates](AzureCertificates) contains, for your convenience, the root certificated used to connect to Azure IoT. The current one, Baltimore Root CA is the one to use up to June 2022. Starting in June 2022, the Digicert Global Root 2 is the one to use. For more information, please read the following [blog](https://techcommunity.microsoft.com/t5/internet-of-things/azure-iot-tls-critical-changes-are-almost-here-and-why-you/ba-p/2393169).
Brose to choose your certificate, it can be in a binary (crt, der) or string form (pem, txt) and select ok. The certificate to connect will be selected automatically during the connection.
88
+
Browse to choose your certificate, it can be in a binary (crt, der) or string form (pem, txt) and select ok. The certificate to connect will be selected automatically during the connection.
89
89
90
90
### Creating a DeviceClient
91
91
@@ -129,7 +129,7 @@ reported.Add("sdk", 0.2);
129
129
azureIoT.UpdateReportedProperties(reported);
130
130
```
131
131
132
-
You have as well the option to wait for th twin update confirmation, in this case use a `CancellationToken`than can be cancelled. Otherwise the check will be ignore.
132
+
You have as well the option to wait for the twin update confirmation, in this case use a `CancellationToken`that can be cancelled. Otherwise the check will be ignored.
133
133
134
134
Note: the function will return false if the twin reception confirmation is not checked or if it did not arrive on time.
@@ -195,7 +195,7 @@ Note: the `sender` is a `DeviceClient` class, you can then send a message back,
195
195
196
196
### Method callback
197
197
198
-
Method callback is supported as well. You can register and unregister your methods. Here are few examples:
198
+
Method callback is supported as well. You can register and unregister your methods. Here are a few examples:
199
199
200
200
```csharp
201
201
azureIoT.AddMethodCallback(MethodCallbackTest);
@@ -299,7 +299,7 @@ For symmetric key provisioning you only need the following elements:
299
299
- The ID Scope
300
300
- The device name
301
301
- The device certificate
302
-
- Make sure that your IoT Hub is as well aware of the root/intermediate certificate you are using otherwise you won't be able to connect to your IoT Hub once your device provisioned
302
+
- Make sure that your IoT Hub is as well aware of the root/intermediate certificate you are using otherwise you won't be able to connect to your IoT Hub once your device is provisioned
0 commit comments