< Summary

Class:Azure.ResourceManager.Resources.Models.OperationListResultAutoGenerated3
Assembly:Azure.ResourceManager.Resources
File(s):C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\Generated\Models\OperationListResultAutoGenerated3.cs
Covered lines:0
Uncovered lines:8
Coverable lines:8
Total lines:34
Line coverage:0% (0 of 8)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\Generated\Models\OperationListResultAutoGenerated3.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
 8using System.Collections.Generic;
 9
 10namespace Azure.ResourceManager.Resources.Models
 11{
 12    /// <summary> Result of the request to list Microsoft.Resources operations. It contains a list of operations and a U
 13    internal partial class OperationListResultAutoGenerated3
 14    {
 15        /// <summary> Initializes a new instance of OperationListResultAutoGenerated3. </summary>
 016        internal OperationListResultAutoGenerated3()
 17        {
 018        }
 19
 20        /// <summary> Initializes a new instance of OperationListResultAutoGenerated3. </summary>
 21        /// <param name="value"> List of Microsoft.Resources operations. </param>
 22        /// <param name="nextLink"> URL to get the next set of operation list results if there are any. </param>
 023        internal OperationListResultAutoGenerated3(IReadOnlyList<OperationAutoGenerated3> value, string nextLink)
 24        {
 025            Value = value;
 026            NextLink = nextLink;
 027        }
 28
 29        /// <summary> List of Microsoft.Resources operations. </summary>
 030        public IReadOnlyList<OperationAutoGenerated3> Value { get; }
 31        /// <summary> URL to get the next set of operation list results if there are any. </summary>
 032        public string NextLink { get; }
 33    }
 34}