1 write to ServiceUri
Aspire.Azure.Storage.Blobs (1)
AzureStorageBlobsSettings.cs (1)
59
ServiceUri
= uri;
6 references to ServiceUri
Aspire.Azure.Storage.Blobs (6)
AspireBlobStorageExtensions.cs (5)
33
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureStorageBlobsSettings.ConnectionString"/> nor <see cref="AzureStorageBlobsSettings.
ServiceUri
"/> is provided.</exception>
52
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureStorageBlobsSettings.ConnectionString"/> nor <see cref="AzureStorageBlobsSettings.
ServiceUri
"/> is provided.</exception>
73
if (string.IsNullOrEmpty(connectionString) && settings.
ServiceUri
is null)
79
cred is not null ? new BlobServiceClient(settings.
ServiceUri
, cred, options) :
80
new BlobServiceClient(settings.
ServiceUri
, options);
AzureStorageBlobsSettings.cs (1)
18
/// If <see cref="ConnectionString"/> is set, it overrides <see cref="
ServiceUri
"/> and <see cref="Credential"/>.