OutputFileReference Class

Definition

A reference to a task or job output file in persistent storage.

public sealed class OutputFileReference
type OutputFileReference = class
Public NotInheritable Class OutputFileReference
Inheritance
OutputFileReference

Properties

BlobClient

Gets a reference to the underlying BlobBaseClient object representing the file in persistent storage. This can be used to invoke blob methods or overloads not surfaced by the OutputFileReference abstraction.

FilePath

Gets the path under which the file was stored.

Uri

Gets the URI of the file in persistent storage.

Methods

DeleteAsync(CancellationToken, DeleteSnapshotsOption)

Deletes the file from persistent storage.

DownloadToByteArrayAsync(Byte[], Int32, CancellationToken)

Downloads the contents of the file to a byte array.

DownloadToFileAsync(String, CancellationToken)

Downloads the contents of the file to a specified path.

DownloadToStreamAsync(Stream, CancellationToken)

Downloads the contents of the file to a stream.

OpenReadAsync(CancellationToken)

Opens a stream for reading from the file in persistent storage.

Applies to