< Summary

Class:Azure.Data.Tables.TableQueryEntitiesWithPartitionAndRowKeyHeaders
Assembly:Azure.Data.Tables
File(s):C:\Git\azure-sdk-for-net\sdk\tables\Azure.Data.Tables\src\Generated\TableQueryEntitiesWithPartitionAndRowKeyHeaders.cs
Covered lines:3
Uncovered lines:3
Coverable lines:6
Total lines:27
Line coverage:50% (3 of 6)
Covered branches:0
Total branches:6
Branch coverage:0% (0 of 6)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%100%
get_Version()-0%0%
get_XMsContinuationNextPartitionKey()-0%0%
get_XMsContinuationNextRowKey()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\tables\Azure.Data.Tables\src\Generated\TableQueryEntitiesWithPartitionAndRowKeyHeaders.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 Azure;
 9using Azure.Core;
 10
 11namespace Azure.Data.Tables
 12{
 13    internal class TableQueryEntitiesWithPartitionAndRowKeyHeaders
 14    {
 15        private readonly Response _response;
 816        public TableQueryEntitiesWithPartitionAndRowKeyHeaders(Response response)
 17        {
 818            _response = response;
 819        }
 20        /// <summary> Indicates the version of the Table service used to execute the request. This header is returned fo
 021        public string Version => _response.Headers.TryGetValue("x-ms-version", out string value) ? value : null;
 22        /// <summary> This header contains the continuation token value for partition key. </summary>
 023        public string XMsContinuationNextPartitionKey => _response.Headers.TryGetValue("x-ms-continuation-NextPartitionK
 24        /// <summary> This header contains the continuation token value for row key. </summary>
 025        public string XMsContinuationNextRowKey => _response.Headers.TryGetValue("x-ms-continuation-NextRowKey", out str
 26    }
 27}