次の方法で共有


CallRecording.DownloadTo メソッド

定義

オーバーロード

DownloadTo(Uri, Stream, ContentTransferOptions, CancellationToken)

操作は DownloadTo(Uri, Stream, ContentTransferOptions, CancellationToken) 、並列要求を使用して指定されたコンテンツをダウンロードし、 にコンテンツを destinationStream書き込みます。

DownloadTo(Uri, String, ContentTransferOptions, CancellationToken)

操作は DownloadTo(Uri, String, ContentTransferOptions, CancellationToken) 、並列要求を使用して指定されたコンテンツをダウンロードし、 にコンテンツを destinationPath書き込みます。

DownloadTo(Uri, Stream, ContentTransferOptions, CancellationToken)

ソース:
CallRecording.cs
ソース:
CallRecording.cs

操作は DownloadTo(Uri, Stream, ContentTransferOptions, CancellationToken) 、並列要求を使用して指定されたコンテンツをダウンロードし、 にコンテンツを destinationStream書き込みます。

public virtual Azure.Response DownloadTo (Uri sourceLocation, System.IO.Stream destinationStream, Azure.Communication.CallAutomation.ContentTransferOptions transferOptions = default, System.Threading.CancellationToken cancellationToken = default);
abstract member DownloadTo : Uri * System.IO.Stream * Azure.Communication.CallAutomation.ContentTransferOptions * System.Threading.CancellationToken -> Azure.Response
override this.DownloadTo : Uri * System.IO.Stream * Azure.Communication.CallAutomation.ContentTransferOptions * System.Threading.CancellationToken -> Azure.Response
Public Overridable Function DownloadTo (sourceLocation As Uri, destinationStream As Stream, Optional transferOptions As ContentTransferOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response

パラメーター

sourceLocation
Uri

Uriレコーディングのコンテンツの URL の場所を含む 。

destinationStream
Stream

Streamダウンロードしたコンテンツの書き込み対象の 。

transferOptions
ContentTransferOptions

並列転送動作を構成する場合は省略可能 ContentTransferOptions です。

cancellationToken
CancellationToken

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

戻り値

Response操作を記述する 。

注釈

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

適用対象

DownloadTo(Uri, String, ContentTransferOptions, CancellationToken)

ソース:
CallRecording.cs
ソース:
CallRecording.cs

操作は DownloadTo(Uri, String, ContentTransferOptions, CancellationToken) 、並列要求を使用して指定されたコンテンツをダウンロードし、 にコンテンツを destinationPath書き込みます。

public virtual Azure.Response DownloadTo (Uri sourceLocation, string destinationPath, Azure.Communication.CallAutomation.ContentTransferOptions transferOptions = default, System.Threading.CancellationToken cancellationToken = default);
abstract member DownloadTo : Uri * string * Azure.Communication.CallAutomation.ContentTransferOptions * System.Threading.CancellationToken -> Azure.Response
override this.DownloadTo : Uri * string * Azure.Communication.CallAutomation.ContentTransferOptions * System.Threading.CancellationToken -> Azure.Response
Public Overridable Function DownloadTo (sourceLocation As Uri, destinationPath As String, Optional transferOptions As ContentTransferOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response

パラメーター

sourceLocation
Uri

Uriレコーディングのコンテンツの URL の場所を含む 。

destinationPath
String

ダウンロードしたコンテンツを書き込むファイル パス。

transferOptions
ContentTransferOptions

並列転送動作を構成する場合は省略可能 ContentTransferOptions です。

cancellationToken
CancellationToken

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

戻り値

Response操作を記述する 。

注釈

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

適用対象