DataLakeFileClient.ReadAsync メソッド

定義

オーバーロード

ReadAsync()

操作は ReadAsync() 、メタデータとプロパティを含むファイルをサービスからダウンロードします。

詳細については、「 BLOB を取得します

ReadAsync(CancellationToken)

操作は ReadAsync(CancellationToken) 、メタデータとプロパティを含むファイルをサービスからダウンロードします。

詳細については、「 BLOB を取得します

ReadAsync(DataLakeFileReadOptions, CancellationToken)

操作は Azure.Storage.Files.DataLake.DataLakeFileClient.ReadAsync(Azure.HttpRange,Azure.Storage.Files.DataLake.Models.DataLakeRequestConditions,System.Boolean,System.Threading.CancellationToken) 、メタデータとプロパティを含むファイルをサービスからダウンロードします。

詳細については、「 BLOB を取得します

ReadAsync()

ソース:
DataLakeFileClient.cs
ソース:
DataLakeFileClient.cs

操作は ReadAsync() 、メタデータとプロパティを含むファイルをサービスからダウンロードします。

詳細については、「 BLOB を取得します

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Files.DataLake.Models.FileDownloadInfo>> ReadAsync ();
abstract member ReadAsync : unit -> System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Files.DataLake.Models.FileDownloadInfo>>
override this.ReadAsync : unit -> System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Files.DataLake.Models.FileDownloadInfo>>
Public Overridable Function ReadAsync () As Task(Of Response(Of FileDownloadInfo))

戻り値

Response<T>ダウンロードしたファイルを記述する 。 Content には、ファイルのデータが含まれています。

注釈

RequestFailedExceptionエラーが発生すると、 がスローされます。

適用対象

ReadAsync(CancellationToken)

ソース:
DataLakeFileClient.cs
ソース:
DataLakeFileClient.cs

操作は ReadAsync(CancellationToken) 、メタデータとプロパティを含むファイルをサービスからダウンロードします。

詳細については、「 BLOB を取得します

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Files.DataLake.Models.FileDownloadInfo>> ReadAsync (System.Threading.CancellationToken cancellationToken = default);
abstract member ReadAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Files.DataLake.Models.FileDownloadInfo>>
override this.ReadAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Files.DataLake.Models.FileDownloadInfo>>
Public Overridable Function ReadAsync (Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of FileDownloadInfo))

パラメーター

cancellationToken
CancellationToken

操作を取り消す必要があることを示す通知を伝達する場合は省略可能 CancellationToken です。

戻り値

Response<T>ダウンロードしたファイルを記述する 。 Content には、ファイルのデータが含まれています。

注釈

RequestFailedExceptionエラーが発生すると、 がスローされます。

適用対象

ReadAsync(DataLakeFileReadOptions, CancellationToken)

ソース:
DataLakeFileClient.cs
ソース:
DataLakeFileClient.cs

操作は Azure.Storage.Files.DataLake.DataLakeFileClient.ReadAsync(Azure.HttpRange,Azure.Storage.Files.DataLake.Models.DataLakeRequestConditions,System.Boolean,System.Threading.CancellationToken) 、メタデータとプロパティを含むファイルをサービスからダウンロードします。

詳細については、「 BLOB を取得します

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Files.DataLake.Models.FileDownloadInfo>> ReadAsync (Azure.Storage.Files.DataLake.Models.DataLakeFileReadOptions options = default, System.Threading.CancellationToken cancellationToken = default);
abstract member ReadAsync : Azure.Storage.Files.DataLake.Models.DataLakeFileReadOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Files.DataLake.Models.FileDownloadInfo>>
override this.ReadAsync : Azure.Storage.Files.DataLake.Models.DataLakeFileReadOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Files.DataLake.Models.FileDownloadInfo>>
Public Overridable Function ReadAsync (Optional options As DataLakeFileReadOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of FileDownloadInfo))

パラメーター

options
DataLakeFileReadOptions

省略可能なパラメーター。

cancellationToken
CancellationToken

操作を取り消す必要があることを示す通知を伝達する場合は省略可能 CancellationToken です。

戻り値

Response<T>ダウンロードしたファイルを記述する 。 Content には、ファイルのデータが含まれています。

注釈

RequestFailedExceptionエラーが発生すると、 がスローされます。

適用対象