Skip to content

Commit

Permalink
Fix warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
networkfusion committed Oct 15, 2021
1 parent 21ad8ea commit 32c0a02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions nanoFramework.Aws.IoTCore.Devices/CloudToDeviceMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public class CloudToDeviceMessageEventArgs : EventArgs
/// Constructor for device message event arguments.
/// </summary>
/// <param name="message">The string message.</param>
/// <param name="topic">The topic that the message was received.</param>
public CloudToDeviceMessageEventArgs(string message, string topic)
{
Message = message;
Expand Down
6 changes: 2 additions & 4 deletions nanoFramework.Aws.IoTCore.Devices/MqttConnectionClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,10 @@ namespace nanoFramework.Aws.IoTCore.Devices
{
/// <summary>
/// AWS IoT Core MQTT Connection Client for .NET nanoFramework
/// </summary>
/// <remarks>
/// <seealso cref="https://github.com/aws/aws-sdk-net/blob/master/sdk/src/Services/IotData/Generated/_netstandard/AmazonIotDataClient.cs"/>
/// <seealso cref="https://github.com/aws/aws-iot-device-sdk-embedded-C/tree/master/src"/>
/// <seealso cref="https://docs.aws.amazon.com/iot/latest/developerguide/device-shadow-mqtt.html"/>
/// </remarks>
/// </summary>
public class MqttConnectionClient : IDisposable
{
/// <summary>
Expand Down Expand Up @@ -86,7 +84,7 @@ public enum QoSLevel
/// <summary>
/// Creates an <see cref="MqttConnectionClient"/> class.
/// </summary>
/// <param name="iotCoreUri">The AWS IoT Core fully quilified domain name (example: <instance>.<region>.amazonaws.com)</param>
/// <param name="iotCoreUri">The AWS IoT Core fully quilified domain name (example: 'instance'.'region'.amazonaws.com)</param>
/// <param name="uniqueId">A unique identity for your device (Device ID / Thing Name).</param>
/// <param name="clientCert">The certificate used to connect the device to the MQTT broker (containing both the private certificate and private key).</param>
/// <param name="qosLevel">The default quality of service level for the delivery of MQTT messages, (defaults to the lowest quality)</param>
Expand Down

0 comments on commit 32c0a02

Please sign in to comment.