< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_HttpHeaders()-0%100%
get_Metadata()-0%100%
get_Tags()-100%100%
get_Conditions()-0%100%

File(s)

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

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using Metadata = System.Collections.Generic.IDictionary<string, string>;
 5using Tags = System.Collections.Generic.IDictionary<string, string>;
 6
 7namespace Azure.Storage.Blobs.Models
 8{
 9    /// <summary>
 10    /// Optional parameters for creating an Append Blob.
 11    /// </summary>
 12    public class AppendBlobCreateOptions
 13    {
 14        /// <summary>
 15        /// Optional standard HTTP header properties that can be set for the
 16        /// new append blob.
 17        /// </summary>
 018        public BlobHttpHeaders HttpHeaders { get; set; }
 19
 20        /// <summary>
 21        /// Optional custom metadata to set for this append blob.
 22        /// </summary>
 023        public Metadata Metadata { get; set; }
 24
 25        /// <summary>
 26        /// Options tags to set for this append blob.
 27        /// </summary>
 6428        public Tags Tags { get; set; }
 29
 30        /// <summary>
 31        /// Optional <see cref="AppendBlobRequestConditions"/> to add
 32        /// conditions on the creation of this new append blob.
 33        /// </summary>
 034        public AppendBlobRequestConditions Conditions { get; set; }
 35    }
 36}