AzureStorageListAsync Method

This method returns a list of all files located in the container

Definition

Namespace: MobileTrack.DataContainers.FileStorage
Assembly: MobileTrack.DataContainers (in MobileTrack.DataContainers.dll) Version: 0.8+34f1bbd8dc6b32752cfce829cbed66e15113d7ba
public Task<MutableEntityTreeNode<BlobDto>> ListAsync(
	CompanyDto owner,
	string? folder = null,
	CancellationToken cancellationToken = default
)

Parameters

owner  CompanyDto
Company owning the file.
folder  String  (Optional)
Optional: subfolder directory to get the files from. If null, the root directory will be picked (and its subdirectories)
cancellationToken  CancellationToken  (Optional)
Optional: provide CancellationToken for the task creating the container

Return Value

TaskMutableEntityTreeNodeBlobDto
Blobs in a list

Implements

IAzureStorageListAsync(CompanyDto, String, CancellationToken)

See Also