< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\storage\Azure.Storage.Files.DataLake\src\Models\FileSystemInfo.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    /// FileSystemInfo.
 10    /// </summary>
 11    public class FileSystemInfo
 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>
 276217        public ETag ETag { get; internal set; }
 18
 19        /// <summary>
 20        /// Returns the <see cref="DateTimeOffset"/> the file system was last modified. Any operation that modifies the
 21        /// file system, including an update of the file systems's metadata or properties, changes the last-modified
 22        /// time of the file system.
 23        /// </summary>
 024        public DateTimeOffset LastModified { get; internal set; }
 25
 26        /// <summary>
 27        /// Prevent direct instantiation of FileSystemInfo instances.
 28        /// You can use DataLakeModelFactory.FileSystemInfo instead.
 29        /// </summary>
 549230        internal FileSystemInfo() { }
 31    }
 32}