你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
CloudFileClient.ListSharesSegmented 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
ListSharesSegmented(FileContinuationToken) |
返回包含共享集合的结果段。 |
ListSharesSegmented(String, FileContinuationToken) |
返回包含共享集合的结果段。 |
ListSharesSegmented(String, ShareListingDetails, Nullable<Int32>, FileContinuationToken, FileRequestOptions, OperationContext) |
返回一个结果段,其中包含名称以指定的前缀开头的共享的集合。 |
ListSharesSegmented(FileContinuationToken)
返回包含共享集合的结果段。
[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.File.ShareResultSegment ListSharesSegmented(Microsoft.Azure.Storage.File.FileContinuationToken currentToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member ListSharesSegmented : Microsoft.Azure.Storage.File.FileContinuationToken -> Microsoft.Azure.Storage.File.ShareResultSegment
override this.ListSharesSegmented : Microsoft.Azure.Storage.File.FileContinuationToken -> Microsoft.Azure.Storage.File.ShareResultSegment
Public Overridable Function ListSharesSegmented (currentToken As FileContinuationToken) As ShareResultSegment
参数
- currentToken
- FileContinuationToken
上一列表操作返回的 FileContinuationToken 标记。
返回
共享的结果段。
- 属性
适用于
ListSharesSegmented(String, FileContinuationToken)
返回包含共享集合的结果段。
[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.File.ShareResultSegment ListSharesSegmented(string prefix, Microsoft.Azure.Storage.File.FileContinuationToken currentToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member ListSharesSegmented : string * Microsoft.Azure.Storage.File.FileContinuationToken -> Microsoft.Azure.Storage.File.ShareResultSegment
override this.ListSharesSegmented : string * Microsoft.Azure.Storage.File.FileContinuationToken -> Microsoft.Azure.Storage.File.ShareResultSegment
Public Overridable Function ListSharesSegmented (prefix As String, currentToken As FileContinuationToken) As ShareResultSegment
参数
- prefix
- String
共享名称前缀。
- currentToken
- FileContinuationToken
上一操作返回的继续标记。
返回
共享的结果段。
- 属性
适用于
ListSharesSegmented(String, ShareListingDetails, Nullable<Int32>, FileContinuationToken, FileRequestOptions, OperationContext)
返回一个结果段,其中包含名称以指定的前缀开头的共享的集合。
[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.File.ShareResultSegment ListSharesSegmented(string prefix, Microsoft.Azure.Storage.File.ShareListingDetails detailsIncluded, int? maxResults, Microsoft.Azure.Storage.File.FileContinuationToken currentToken, Microsoft.Azure.Storage.File.FileRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member ListSharesSegmented : string * Microsoft.Azure.Storage.File.ShareListingDetails * Nullable<int> * Microsoft.Azure.Storage.File.FileContinuationToken * Microsoft.Azure.Storage.File.FileRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.File.ShareResultSegment
override this.ListSharesSegmented : string * Microsoft.Azure.Storage.File.ShareListingDetails * Nullable<int> * Microsoft.Azure.Storage.File.FileContinuationToken * Microsoft.Azure.Storage.File.FileRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.File.ShareResultSegment
Public Overridable Function ListSharesSegmented (prefix As String, detailsIncluded As ShareListingDetails, maxResults As Nullable(Of Integer), currentToken As FileContinuationToken, Optional options As FileRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing) As ShareResultSegment
参数
- prefix
- String
共享名称前缀。
- detailsIncluded
- ShareListingDetails
一个用于指示是否连同列表一起返回共享元数据的值。
- currentToken
- FileContinuationToken
上一操作返回的继续标记。
- options
- FileRequestOptions
一个 FileRequestOptions 对象,它指定请求的其他选项。
- operationContext
- OperationContext
一个 OperationContext 对象,它一个表示当前操作的上下文。
返回
共享的结果段。
- 属性