< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_DefaultEncryptionScope()-0%100%
get_PreventEncryptionScopeOverride()-0%100%

File(s)

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

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4namespace Azure.Storage.Blobs.Models
 5{
 6    /// <summary>
 7    /// Encryption scope options to be used when creating a container.
 8    /// </summary>
 9    public class BlobContainerEncryptionScopeOptions
 10    {
 11        /// <summary>
 12        /// Specifies the default encryption scope to set on the container and use for all future writes.
 13        /// </summary>
 014        public string DefaultEncryptionScope { get; set; }
 15
 16        /// <summary>
 17        /// If true, prevents any request from specifying a different encryption scope than the scope set on the contain
 18        /// </summary>
 019        public bool PreventEncryptionScopeOverride  { get; set; }
 20    }
 21}