DeletedCompaniesAzureFileStorage Property

Dependency injection of the IAzureStorage Azure Blob Storage service.
Every CompanyDto, except for MobileTrack itself (for now?) has their own folder in the blob storage to store files in.
This can be their logo or icon files, images representing users or Devices, or attachments they want to store.
It can also be used to store reports in generated by MobileTrack Nexus.

Definition

Namespace: MobileTrack.Web.Portal.Pages.Admin
Assembly: MobileTrack.Web.Portal (in MobileTrack.Web.Portal.exe) Version: 0.7+45c8d9adb5970d727cceec44a5ed61aea0016e50
[InjectAttribute]
public required IAzureStorage AzureFileStorage { get; set; }

Property Value

IAzureStorage

Implements

IHasAzureStorageAzureFileStorage

Example

C#
var file = await AzureStorage.DownloadAsync(Company, CurrentFile.Uri, CancellationToken.Token).ConfigureAwait(false);

See Also