< Summary

Class:Azure.Storage.Blobs.Models.GetBlobTagResult
Assembly:Azure.Storage.Blobs
File(s):C:\Git\azure-sdk-for-net\sdk\storage\Azure.Storage.Blobs\src\Models\GetBlobTagResult.cs
Covered lines:1
Uncovered lines:0
Coverable lines:1
Total lines:18
Line coverage:100% (1 of 1)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_Tags()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\storage\Azure.Storage.Blobs\src\Models\GetBlobTagResult.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using Tags = System.Collections.Generic.IDictionary<string, string>;
 5
 6namespace Azure.Storage.Blobs.Models
 7{
 8    /// <summary>
 9    /// The result of BlobBaseClient.GetTags() call.
 10    /// </summary>
 11    public class GetBlobTagResult
 12    {
 13        /// <summary>
 14        /// Blob Tags.
 15        /// </summary>
 14416        public Tags Tags { get; internal set; }
 17    }
 18}

Methods/Properties

get_Tags()