次の方法で共有


Scenes.DownloadAsync(String, RequestContext) メソッド

定義

指定された入力 filePath の応答としてファイル Stream をダウンロードして返します。

public virtual System.Threading.Tasks.Task<Azure.Response> DownloadAsync (string filePath, Azure.RequestContext context = default);
abstract member DownloadAsync : string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.DownloadAsync : string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function DownloadAsync (filePath As String, Optional context As RequestContext = Nothing) As Task(Of Response)

パラメーター

filePath
String

シーン ファイルのクラウド ストレージ パス。

context
RequestContext

要求コンテキスト。これは、呼び出しごとにクライアント パイプラインの既定の動作をオーバーライドできます。

戻り値

サービスから返された応答。

例外

filePath が null です。

サービスから成功以外の状態コードが返されました。

このサンプルでは、必要なパラメーターを使用して DownloadAsync を呼び出し、結果を解析する方法を示します。

var credential = new DefaultAzureCredential();
var client = new FarmBeatsClient(credential).GetScenesClient(<2022-11-01-preview>);

Response response = await client.DownloadAsync("<filePath>");
if (response.ContentStream != null)
{
    using(Stream outFileStream = File.OpenWrite("<filePath>")
    {
        response.ContentStream.CopyTo(outFileStream);
    }
}

適用対象