Skip to content

Commit

Permalink
doc(service-client): Update readme about the differnt client and oper…
Browse files Browse the repository at this point in the history
…ations (#1798)
  • Loading branch information
vinagesh committed Mar 22, 2021
1 parent 54fcad5 commit c0fba89
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions iothub/service/src/DigitalTwin/DigitalTwinClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ namespace Microsoft.Azure.Devices
{
/// <summary>
/// The Digital Twins Service Client contains methods to retrieve and update digital twin information, and invoke commands on a digital twin device.
/// For more information, see <see href="https://github.com/Azure/azure-iot-sdk-csharp#iot-hub-service-sdk"/>
/// </summary>
public class DigitalTwinClient : IDisposable
{
Expand Down
1 change: 1 addition & 0 deletions iothub/service/src/JobClient/JobClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public abstract class JobClient : IDisposable
{
/// <summary>
/// Creates a JobClient from the Iot Hub connection string.
/// For more information, see <see href="https://github.com/Azure/azure-iot-sdk-csharp#iot-hub-service-sdk"/>
/// </summary>
/// <param name="connectionString"> The Iot Hub connection string.</param>
/// <returns> A JobClient instance. </returns>
Expand Down
1 change: 1 addition & 0 deletions iothub/service/src/RegistryManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ namespace Microsoft.Azure.Devices
{
/// <summary>
/// Contains methods that services can use to perform create, remove, update and delete operations on devices.
/// For more information, see <see href="https://github.com/Azure/azure-iot-sdk-csharp#iot-hub-service-sdk"/>
/// </summary>
[System.Diagnostics.CodeAnalysis.SuppressMessage(
"Naming",
Expand Down
6 changes: 4 additions & 2 deletions iothub/service/src/ServiceClient.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Threading;
Expand Down Expand Up @@ -36,8 +38,8 @@ public enum TransportType
#pragma warning restore CA1707 // Identifiers should not contain underscores

/// <summary>
/// Contains methods that services can use to send messages to devices/modules,
/// invoke a direct method on a device/module and deliver notifications for file upload and cloud-to-device operations.
/// Contains methods that services can use to send messages to devices
/// For more information, see <see href="https://github.com/Azure/azure-iot-sdk-csharp#iot-hub-service-sdk"/>
/// </summary>
public abstract class ServiceClient : IDisposable
{
Expand Down

0 comments on commit c0fba89

Please sign in to comment.