1 type derived from AzureStorageQueuesSettings
Aspire.Azure.Storage.Queues (1)
AzureStorageQueueSettings.cs (1)
13
public 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>
39
Action<
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>
62
Action<
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>
84
Action<
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>
107
Action<
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.
181
private sealed class StorageQueuesComponent : AzureComponent<
AzureStorageQueuesSettings
, QueueServiceClient, QueueClientOptions>
184
AzureClientFactoryBuilder azureFactoryBuilder,
AzureStorageQueuesSettings
settings, string connectionName,
210
protected override void BindSettingsToConfiguration(
AzureStorageQueuesSettings
settings, IConfiguration configuration)
215
protected override IHealthCheck CreateHealthCheck(QueueServiceClient client,
AzureStorageQueuesSettings
settings)
218
protected override bool GetHealthCheckEnabled(
AzureStorageQueuesSettings
settings)
221
protected override TokenCredential? GetTokenCredential(
AzureStorageQueuesSettings
settings)
224
protected override bool GetMetricsEnabled(
AzureStorageQueuesSettings
settings)
227
protected 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)
15
public class ConformanceTests : ConformanceTests<QueueServiceClient,
AzureStorageQueuesSettings
>
81
protected override void RegisterComponent(HostApplicationBuilder builder, Action<
AzureStorageQueuesSettings
>? configure = null, string? key = null)
92
void ConfigureCredentials(
AzureStorageQueuesSettings
settings)
102
protected override void SetHealthCheck(
AzureStorageQueuesSettings
options, bool enabled)
105
protected override void SetMetrics(
AzureStorageQueuesSettings
options, bool enabled)
108
protected override void SetTracing(
AzureStorageQueuesSettings
options, bool enabled)