Skip to content

Commit 32c0a02

Browse files
committed
Fix warnings.
1 parent 21ad8ea commit 32c0a02

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

nanoFramework.Aws.IoTCore.Devices/CloudToDeviceMessage.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ public class CloudToDeviceMessageEventArgs : EventArgs
2121
/// Constructor for device message event arguments.
2222
/// </summary>
2323
/// <param name="message">The string message.</param>
24+
/// <param name="topic">The topic that the message was received.</param>
2425
public CloudToDeviceMessageEventArgs(string message, string topic)
2526
{
2627
Message = message;

nanoFramework.Aws.IoTCore.Devices/MqttConnectionClient.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,10 @@ namespace nanoFramework.Aws.IoTCore.Devices
1616
{
1717
/// <summary>
1818
/// AWS IoT Core MQTT Connection Client for .NET nanoFramework
19-
/// </summary>
20-
/// <remarks>
2119
/// <seealso cref="https://github.com/aws/aws-sdk-net/blob/master/sdk/src/Services/IotData/Generated/_netstandard/AmazonIotDataClient.cs"/>
2220
/// <seealso cref="https://github.com/aws/aws-iot-device-sdk-embedded-C/tree/master/src"/>
2321
/// <seealso cref="https://docs.aws.amazon.com/iot/latest/developerguide/device-shadow-mqtt.html"/>
24-
/// </remarks>
22+
/// </summary>
2523
public class MqttConnectionClient : IDisposable
2624
{
2725
/// <summary>
@@ -86,7 +84,7 @@ public enum QoSLevel
8684
/// <summary>
8785
/// Creates an <see cref="MqttConnectionClient"/> class.
8886
/// </summary>
89-
/// <param name="iotCoreUri">The AWS IoT Core fully quilified domain name (example: <instance>.<region>.amazonaws.com)</param>
87+
/// <param name="iotCoreUri">The AWS IoT Core fully quilified domain name (example: 'instance'.'region'.amazonaws.com)</param>
9088
/// <param name="uniqueId">A unique identity for your device (Device ID / Thing Name).</param>
9189
/// <param name="clientCert">The certificate used to connect the device to the MQTT broker (containing both the private certificate and private key).</param>
9290
/// <param name="qosLevel">The default quality of service level for the delivery of MQTT messages, (defaults to the lowest quality)</param>

0 commit comments

Comments
 (0)