1 write to ServiceUri
Aspire.Azure.Storage.Queues (1)
AzureStorageQueuesSettings.cs (1)
59ServiceUri = uri;
6 references to ServiceUri
Aspire.Azure.Storage.Queues (6)
AspireQueueStorageExtensions.cs (5)
34/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureStorageQueuesSettings.ConnectionString"/> nor <see cref="AzureStorageQueuesSettings.ServiceUri"/> is provided.</exception> 53/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureStorageQueuesSettings.ConnectionString"/> nor <see cref="AzureStorageQueuesSettings.ServiceUri"/> is provided.</exception> 74if (string.IsNullOrEmpty(connectionString) && settings.ServiceUri is null) 82? new QueueServiceClient(settings.ServiceUri, cred, options) 83: new QueueServiceClient(settings.ServiceUri, options);
AzureStorageQueuesSettings.cs (1)
18/// If <see cref="ConnectionString"/> is set, it overrides <see cref="ServiceUri"/> and <see cref="Credential"/>.