| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | using System; |
| | | 5 | | |
| | | 6 | | namespace 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> |
| | 3542 | 17 | | 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> |
| | 3534 | 23 | | 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> |
| | 6968 | 29 | | internal PathInfo() { } |
| | | 30 | | } |
| | | 31 | | } |