< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_Name()-100%100%
get_Description()-100%100%
get_IsFatal()-100%100%
get_Position()-100%100%
.ctor()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\storage\Azure.Storage.Files.DataLake\src\Models\DataLakeQueryError.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.Files.DataLake.Models
 9{
 10    /// <summary>
 11    /// Data Lake query error.
 12    /// </summary>
 13    public class DataLakeQueryError
 14    {
 15        /// <summary>
 16        /// Name.
 17        /// </summary>
 1618        public string Name { get; internal set; }
 19
 20        /// <summary>
 21        /// Description.
 22        /// </summary>
 1623        public string Description { get; internal set; }
 24
 25        /// <summary>
 26        /// If the error is a fatal error.
 27        /// </summary>
 1628        public bool IsFatal { get; internal set; }
 29
 30        /// <summary>
 31        /// The position of the error.
 32        /// </summary>
 1633        public long Position { get; internal set; }
 34
 1635        internal DataLakeQueryError() { }
 36    }
 37}