1 type derived from AzureStorageQueuesSettings
Aspire.Azure.Storage.Queues (1)
AzureStorageQueueSettings.cs (1)
13public sealed partial class AzureStorageQueueSettings : AzureStorageQueuesSettings, IConnectionStringSettings
35 references to AzureStorageQueuesSettings
Aspire.Azure.Storage.Queues (29)
AspireQueueStorageExtensions.cs (28)
32/// <param name="configureSettings">An optional method that can be used for customizing the <see cref="AzureStorageQueuesSettings"/>. It's invoked after the settings are read from the configuration.</param> 35/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureStorageQueuesSettings.ConnectionString"/> nor <see cref="AzureStorageQueuesSettings.ServiceUri"/> is provided.</exception> 39Action<AzureStorageQueuesSettings>? configureSettings = null, 54/// <param name="configureSettings">An optional method that can be used for customizing the <see cref="AzureStorageQueuesSettings"/>. It's invoked after the settings are read from the configuration.</param> 57/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureStorageQueuesSettings.ConnectionString"/> nor <see cref="AzureStorageQueuesSettings.ServiceUri"/> is provided.</exception> 62Action<AzureStorageQueuesSettings>? configureSettings = null, 77/// <param name="configureSettings">An optional method that can be used for customizing the <see cref="AzureStorageQueuesSettings"/>. It's invoked after the settings are read from the configuration.</param> 80/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureStorageQueuesSettings.ConnectionString"/> nor <see cref="AzureStorageQueuesSettings.ServiceUri"/> is provided.</exception> 84Action<AzureStorageQueuesSettings>? configureSettings = null, 99/// <param name="configureSettings">An optional method that can be used for customizing the <see cref="AzureStorageQueuesSettings"/>. It's invoked after the settings are read from the configuration.</param> 102/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureStorageQueuesSettings.ConnectionString"/> nor <see cref="AzureStorageQueuesSettings.ServiceUri"/> is provided.</exception> 107Action<AzureStorageQueuesSettings>? configureSettings = null, 131/// Neither <see cref="AzureStorageQueuesSettings.ConnectionString"/> nor <see cref="AzureStorageQueuesSettings.ServiceUri"/> is provided. 165/// Neither <see cref="AzureStorageQueuesSettings.ConnectionString"/> nor <see cref="AzureStorageQueuesSettings.ServiceUri"/> is provided. 181private sealed class StorageQueuesComponent : AzureComponent<AzureStorageQueuesSettings, QueueServiceClient, QueueClientOptions> 184AzureClientFactoryBuilder azureFactoryBuilder, AzureStorageQueuesSettings settings, string connectionName, 210protected override void BindSettingsToConfiguration(AzureStorageQueuesSettings settings, IConfiguration configuration) 215protected override IHealthCheck CreateHealthCheck(QueueServiceClient client, AzureStorageQueuesSettings settings) 218protected override bool GetHealthCheckEnabled(AzureStorageQueuesSettings settings) 221protected override TokenCredential? GetTokenCredential(AzureStorageQueuesSettings settings) 224protected override bool GetMetricsEnabled(AzureStorageQueuesSettings settings) 227protected override bool GetTracingEnabled(AzureStorageQueuesSettings settings)
AssemblyInfo.cs (1)
9[assembly: ConfigurationSchema("Aspire:Azure:Storage:Queues", typeof(AzureStorageQueuesSettings))]
Aspire.Azure.Storage.Queues.Tests (6)
ConformanceTests.cs (6)
15public class ConformanceTests : ConformanceTests<QueueServiceClient, AzureStorageQueuesSettings> 81protected override void RegisterComponent(HostApplicationBuilder builder, Action<AzureStorageQueuesSettings>? configure = null, string? key = null) 92void ConfigureCredentials(AzureStorageQueuesSettings settings) 102protected override void SetHealthCheck(AzureStorageQueuesSettings options, bool enabled) 105protected override void SetMetrics(AzureStorageQueuesSettings options, bool enabled) 108protected override void SetTracing(AzureStorageQueuesSettings options, bool enabled)