< Summary

Class:Azure.ResponseDebugView`1
Assembly:Azure.Core
File(s):C:\Git\azure-sdk-for-net\sdk\core\Azure.Core\src\Internal\ResponseDebugView.cs
Covered lines:0
Uncovered lines:5
Coverable lines:5
Total lines:21
Line coverage:0% (0 of 5)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\core\Azure.Core\src\Internal\ResponseDebugView.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using System.Diagnostics;
 5
 6namespace Azure
 7{
 8    internal class ResponseDebugView<T>
 9    {
 10        private readonly Response<T> _response;
 11
 012        public ResponseDebugView(Response<T> response)
 13        {
 014            _response = response;
 015        }
 16
 017        public Response GetRawResponse => _response.GetRawResponse();
 18
 019        public T Value => _response.Value;
 20    }
 21}