| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | using System.Collections.Generic; |
| | | 5 | | |
| | | 6 | | namespace 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> |
| | 300 | 18 | | public string Continuation { get; internal set; } |
| | | 19 | | |
| | | 20 | | /// <summary> |
| | | 21 | | /// PathItems |
| | | 22 | | /// </summary> |
| | 300 | 23 | | 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> |
| | 300 | 29 | | internal PathSegment() { } |
| | | 30 | | } |
| | | 31 | | } |