< Summary

Class:Azure.Storage.Files.DataLake.Models.PathSegment
Assembly:Azure.Storage.Files.DataLake
File(s):C:\Git\azure-sdk-for-net\sdk\storage\Azure.Storage.Files.DataLake\src\Models\PathSegment.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_Continuation()-100%100%
get_Paths()-100%100%
.ctor()-100%100%

File(s)

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

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using System.Collections.Generic;
 5
 6namespace Azure.Storage.Files.DataLake.Models
 7{
 8    /// <summary>
 9    /// An enumeration of paths.
 10    /// </summary>
 11    internal class PathSegment
 12    {
 13        /// <summary>
 14        /// If the number of paths to be listed exceeds the maxResults limit, a continuation token is returned.
 15        /// When a continuation token is returned in the response, it must be specified in a subsequent invocation
 16        /// of the list operation to continue listing the paths.
 17        /// </summary>
 30018        public string Continuation { get; internal set; }
 19
 20        /// <summary>
 21        /// PathItems
 22        /// </summary>
 30023        public IEnumerable<PathItem> Paths { get; internal set; }
 24
 25        /// <summary>
 26        /// Prevent direct instantiation of PathSegment instances.
 27        /// You can use DataLakeModelFactory.PathSegment instead.
 28        /// </summary>
 30029        internal PathSegment() { }
 30    }
 31}