< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_RecordSeparator()-0%100%
get_ColumnSeparator()-0%100%
get_QuotationCharacter()-0%100%
get_EscapeCharacter()-0%100%
get_HasHeaders()-0%100%

File(s)

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

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using System;
 5using System.Collections.Generic;
 6using System.Text;
 7
 8namespace Azure.Storage.Blobs.Models
 9{
 10    /// <summary>
 11    /// CSV text configuration.
 12    /// </summary>
 13    public class BlobQueryCsvTextOptions : IBlobQueryTextOptions
 14    {
 15        /// <summary>
 16        /// Record Separator.
 17        /// </summary>
 018        public string RecordSeparator { get; set; }
 19
 20        /// <summary>
 21        /// Column separator.
 22        /// </summary>
 023        public string ColumnSeparator { get; set; }
 24
 25        /// <summary>
 26        /// Field quote.
 27        /// </summary>
 028        public char? QuotationCharacter { get; set; }
 29
 30        /// <summary>
 31        /// Escape character.
 32        /// </summary>
 033        public char? EscapeCharacter { get; set; }
 34
 35        /// <summary>
 36        /// Has headers.
 37        /// </summary>
 038        public bool HasHeaders { get; set; }
 39    }
 40}