< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_ETag()-100%100%
get_LastModified()-100%100%
.ctor()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\storage\Azure.Storage.Files.DataLake\src\Models\PathInfo.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using System;
 5
 6namespace Azure.Storage.Files.DataLake.Models
 7{
 8    /// <summary>
 9    /// PathInfo
 10    /// </summary>
 11    public class PathInfo
 12    {
 13        /// <summary>
 14        /// The ETag contains a value that you can use to perform operations conditionally.
 15        /// If the request version is 2011-08-18 or newer, the ETag value will be in quotes.
 16        /// </summary>
 354217        public ETag ETag { get; internal set; }
 18
 19        /// <summary>
 20        /// Returns the date and time the path was last modified. Any operation that modifies the path,
 21        /// including an update of the paths's metadata or properties, changes the last-modified time of the path.
 22        /// </summary>
 353423        public DateTimeOffset LastModified { get; internal set; }
 24
 25        /// <summary>
 26        /// Prevent direct instantiation of PathInfo instances.
 27        /// You can use DataLakeModelFactory.PathInfo instead.
 28        /// </summary>
 696829        internal PathInfo() { }
 30    }
 31}