< Summary

Class:Azure.Iot.Hub.Service.CloudToDeviceMessagesClient
Assembly:Azure.Iot.Hub.Service
File(s):C:\Git\azure-sdk-for-net\sdk\iot\Azure.Iot.Hub.Service\src\CloudToDeviceMessagesClient.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:21
Line coverage:100% (2 of 2)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\iot\Azure.Iot.Hub.Service\src\CloudToDeviceMessagesClient.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4namespace Azure.Iot.Hub.Service
 5{
 6    /// <summary>
 7    /// C2D Messages Client place holder
 8    /// </summary>
 9    public class CloudToDeviceMessagesClient
 10    {
 11        /// <summary>
 12        /// place holder
 13        /// </summary>
 14#pragma warning disable AZC0007 // DO provide a minimal constructor that takes only the parameters required to connect t
 7615        public CloudToDeviceMessagesClient()
 16#pragma warning restore AZC0007 // DO provide a minimal constructor that takes only the parameters required to connect t
 17        {
 18
 7619        }
 20    }
 21}

Methods/Properties

.ctor()