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>
55
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureStorageBlobsSettings.ConnectionString"/> nor <see cref="AzureStorageBlobsSettings.
ServiceUri
"/> is provided.</exception>
77
if (string.IsNullOrEmpty(connectionString) && settings.
ServiceUri
is null)
83
cred is not null ? new BlobServiceClient(settings.
ServiceUri
, cred, options) :
84
new BlobServiceClient(settings.
ServiceUri
, options);
AzureStorageBlobsSettings.cs (1)
18
/// If <see cref="ConnectionString"/> is set, it overrides <see cref="
ServiceUri
"/> and <see cref="Credential"/>.