< Summary

Class:Azure.DigitalTwins.Core.EventRoutesListOptions
Assembly:Azure.DigitalTwins.Core
File(s):C:\Git\azure-sdk-for-net\sdk\digitaltwins\Azure.DigitalTwins.Core\src\Generated\Models\EventRoutesListOptions.cs
Covered lines:2
Uncovered lines:1
Coverable lines:3
Total lines:21
Line coverage:66.6% (2 of 3)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\digitaltwins\Azure.DigitalTwins.Core\src\Generated\Models\EventRoutesListOptions.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4// <auto-generated/>
 5
 6#nullable disable
 7
 8namespace Azure.DigitalTwins.Core
 9{
 10    /// <summary> Parameter group. </summary>
 11    public partial class EventRoutesListOptions
 12    {
 13        /// <summary> Initializes a new instance of EventRoutesListOptions. </summary>
 414        public EventRoutesListOptions()
 15        {
 416        }
 17
 18        /// <summary> The maximum number of items to retrieve per request. The server may choose to return less than the
 019        public int? MaxItemCount { get; set; }
 20    }
 21}

Methods/Properties

.ctor()
get_MaxItemCount()