< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_PathInfo()-0%100%
get_Continuation()-0%100%
.ctor()-0%100%

File(s)

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

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using System;
 5using System.Collections.Generic;
 6using System.Text;
 7
 8namespace Azure.Storage.Files.DataLake.Models
 9{
 10    /// <summary>
 11    /// Path CreateResult
 12    /// </summary>
 13    public class PathCreateInfo
 14    {
 15        /// <summary>
 16        /// Path info for the file or directory.
 17        /// </summary>
 018        public PathInfo PathInfo { get; internal set; }
 19
 20        /// <summary>
 21        /// When renaming a directory, the number of paths that are renamed with each invocation is limited.
 22        /// If the number of paths to be renamed exceeds this limit, a continuation token is returned in this response h
 23        /// When a continuation token is returned in the response, it must be specified in a subsequent invocation of th
 24        /// operation to continue renaming the directory.
 25        /// </summary>
 026        public string Continuation { get; internal set; }
 27
 28        /// <summary>
 29        /// Prevent direct instantiation of PathCreateInfo instances.
 30        /// You can use DataLakeModelFactory.PathCreateInfo instead.
 31        /// </summary>
 032        internal PathCreateInfo() { }
 33
 34    }
 35}