示例#1
0
 /// <summary>
 /// Gets the child directories in a directory.
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: Administration or
 /// Administration.Read.
 ///
 /// Required permissions: Buckets.View and BlobFiles.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='key'>
 /// The Bucket Id
 /// </param>
 /// <param name='directory'>
 /// The directory path
 /// </param>
 /// <param name='fileNameGlob'>
 /// Directory listing filter
 /// </param>
 /// <param name='expand'>
 /// Indicates the related entities to be represented inline. The maximum depth
 /// is 2.
 /// </param>
 /// <param name='filter'>
 /// Restricts the set of items returned. The maximum number of expressions is
 /// 100.
 /// </param>
 /// <param name='select'>
 /// Limits the properties returned in the result.
 /// </param>
 /// <param name='orderby'>
 /// Specifies the order in which items are returned. The maximum number of
 /// expressions is 5.
 /// </param>
 /// <param name='top'>
 /// Number of directories to return
 /// </param>
 /// <param name='skip'>
 /// Number of directories to skip
 /// </param>
 /// <param name='count'>
 /// Indicates whether the total count of items within a collection are returned
 /// in the result.
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <ODataValueOfIEnumerableOfBlobFileDto> GetDirectoriesByKeyAsync(this IBuckets operations, long key, string directory = default(string), string fileNameGlob = default(string), string expand = default(string), string filter = default(string), string select = default(string), string orderby = default(string), int?top = default(int?), int?skip = default(int?), bool?count = default(bool?), long?xUIPATHOrganizationUnitId = default(long?), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetDirectoriesByKeyWithHttpMessagesAsync(key, directory, fileNameGlob, expand, filter, select, orderby, top, skip, count, xUIPATHOrganizationUnitId, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Gets the child directories in a directory.
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: Administration or
 /// Administration.Read.
 ///
 /// Required permissions: Buckets.View and BlobFiles.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='key'>
 /// The Bucket Id
 /// </param>
 /// <param name='directory'>
 /// The directory path
 /// </param>
 /// <param name='top'>
 /// Number of directories to return
 /// </param>
 /// <param name='skip'>
 /// Number of directories to skip
 /// </param>
 /// <param name='fileNameGlob'>
 /// Directory listing filter
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <ODataValueIEnumerableBlobFileDto> GetDirectoriesByKeyAsync(this IBuckets operations, long key, string directory, int?top = default(int?), int?skip = default(int?), string fileNameGlob = default(string), long?xUIPATHOrganizationUnitId = default(long?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
 {
     using (var _result = await operations.GetDirectoriesByKeyWithHttpMessagesAsync(key, directory, top, skip, fileNameGlob, xUIPATHOrganizationUnitId, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }