< Summary

Class:Azure.Core.ResponseWithHeaders`1
Assembly:Azure.Data.Tables
File(s):C:\Git\azure-sdk-for-net\sdk\core\Azure.Core\src\Shared\AutoRest\ResponseWithHeaders{THeaders}.cs
Covered lines:6
Uncovered lines:1
Coverable lines:7
Total lines:24
Line coverage:85.7% (6 of 7)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%100%
GetRawResponse()-100%100%
get_Headers()-0%100%
op_Implicit(...)-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\core\Azure.Core\src\Shared\AutoRest\ResponseWithHeaders{THeaders}.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4#nullable enable
 5
 6namespace Azure.Core
 7{
 8    internal class ResponseWithHeaders<THeaders>
 9    {
 10        private readonly Response _rawResponse;
 11
 85212        public ResponseWithHeaders(THeaders headers, Response rawResponse)
 13        {
 85214            _rawResponse = rawResponse;
 85215            Headers = headers;
 85216        }
 17
 85218        public Response GetRawResponse() => _rawResponse;
 19
 020        public THeaders Headers { get; }
 21
 85222        public static implicit operator Response(ResponseWithHeaders<THeaders> self) => self.GetRawResponse();
 23    }
 24}