1 write to ServiceUri
Aspire.Azure.Storage.Blobs (1)
AzureStorageBlobsSettings.cs (1)
59ServiceUri = 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> 73if (string.IsNullOrEmpty(connectionString) && settings.ServiceUri is null) 79cred is not null ? new BlobServiceClient(settings.ServiceUri, cred, options) : 80new BlobServiceClient(settings.ServiceUri, options);
AzureStorageBlobsSettings.cs (1)
18/// If <see cref="ConnectionString"/> is set, it overrides <see cref="ServiceUri"/> and <see cref="Credential"/>.