< Summary

Class:Azure.Storage.Cryptography.Models.EncryptionAgent
Assembly:Azure.Storage.Queues
File(s):C:\Git\azure-sdk-for-net\sdk\storage\Azure.Storage.Common\src\Shared\ClientsideEncryption\Models\EncryptionAgent.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:21
Line coverage:100% (2 of 2)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_EncryptionVersion()-100%100%
get_EncryptionAlgorithm()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\storage\Azure.Storage.Common\src\Shared\ClientsideEncryption\Models\EncryptionAgent.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4namespace Azure.Storage.Cryptography.Models
 5{
 6    /// <summary>
 7    /// Represents the encryption agent stored on the service.
 8    /// </summary>
 9    internal class EncryptionAgent
 10    {
 11        /// <summary>
 12        /// The protocol version used for encryption.
 13        /// </summary>
 2414        public ClientSideEncryptionVersion EncryptionVersion { get; set; }
 15
 16        /// <summary>
 17        /// The algorithm used for encryption.
 18        /// </summary>
 2419        public ClientSideEncryptionAlgorithm EncryptionAlgorithm { get; set; }
 20    }
 21}