Share via


CallingServerClient.DownloadTo Method

Definition

Overloads

DownloadTo(Uri, Stream, ContentTransferOptions, CancellationToken)

The DownloadTo(Uri, Stream, ContentTransferOptions, CancellationToken) operation downloads the specified content using parallel requests, and writes the content to destinationStream.

DownloadTo(Uri, String, ContentTransferOptions, CancellationToken)

The DownloadTo(Uri, String, ContentTransferOptions, CancellationToken) operation downloads the specified content using parallel requests, and writes the content to destinationPath.

DownloadTo(Uri, Stream, ContentTransferOptions, CancellationToken)

Source:
CallingServerClient.cs

The DownloadTo(Uri, Stream, ContentTransferOptions, CancellationToken) operation downloads the specified content using parallel requests, and writes the content to destinationStream.

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

Parameters

sourceEndpoint
Uri

A Uri with the Recording's content's url location.

destinationStream
Stream

A Stream to write the downloaded content to.

transferOptions
ContentTransferOptions

Optional ContentTransferOptions to configure parallel transfer behavior.

cancellationToken
CancellationToken

Optional CancellationToken to propagate notifications that the operation should be canceled.

Returns

A Response describing the operation.

Remarks

A RequestFailedException will be thrown if a failure occurs.

Applies to

DownloadTo(Uri, String, ContentTransferOptions, CancellationToken)

Source:
CallingServerClient.cs

The DownloadTo(Uri, String, ContentTransferOptions, CancellationToken) operation downloads the specified content using parallel requests, and writes the content to destinationPath.

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

Parameters

sourceEndpoint
Uri

A Uri with the Recording's content's url location.

destinationPath
String

A file path to write the downloaded content to.

transferOptions
ContentTransferOptions

Optional ContentTransferOptions to configure parallel transfer behavior.

cancellationToken
CancellationToken

Optional CancellationToken to propagate notifications that the operation should be canceled.

Returns

A Response describing the operation.

Remarks

A RequestFailedException will be thrown if a failure occurs.

Applies to