15 references to AzureMessagingEventHubsProducerSettings
Aspire.Azure.Messaging.EventHubs (8)
AspireEventHubsExtensions.cs (4)
118
/// <param name="configureSettings">An optional method that can be used for customizing the <see cref="
AzureMessagingEventHubsProducerSettings
"/>. It's invoked after the settings are read from the configuration.</param>
125
Action<
AzureMessagingEventHubsProducerSettings
>? configureSettings = null,
141
/// <param name="configureSettings">An optional method that can be used for customizing the <see cref="
AzureMessagingEventHubsProducerSettings
"/>. It's invoked after the settings are read from the configuration.</param>
148
Action<
AzureMessagingEventHubsProducerSettings
>? configureSettings = null,
AssemblyInfo.cs (1)
14
[assembly: ConfigurationSchema("Aspire:Azure:Messaging:EventHubs:EventHubProducerClient", typeof(
AzureMessagingEventHubsProducerSettings
))]
EventHubProducerClientComponent.cs (3)
12
internal sealed class EventHubProducerClientComponent : EventHubsComponent<
AzureMessagingEventHubsProducerSettings
, EventHubProducerClient, EventHubProducerClientOptions>
22
protected override void BindSettingsToConfiguration(
AzureMessagingEventHubsProducerSettings
settings, IConfiguration config)
28
AzureClientFactoryBuilder azureFactoryBuilder,
AzureMessagingEventHubsProducerSettings
settings,
Aspire.Azure.Messaging.EventHubs.Tests (7)
ConformanceTests.EventHubProducerClient.cs (7)
13
public class ConformanceTests_EventHubProducerClient : ConformanceTestsBase<EventHubProducerClient,
AzureMessagingEventHubsProducerSettings
>
15
protected override void SetHealthCheck(
AzureMessagingEventHubsProducerSettings
options, bool enabled)
18
protected override void SetMetrics(
AzureMessagingEventHubsProducerSettings
options, bool enabled)
21
protected override void SetTracing(
AzureMessagingEventHubsProducerSettings
options, bool enabled)
24
protected override void RegisterComponent(HostApplicationBuilder builder, Action<
AzureMessagingEventHubsProducerSettings
>? configure = null, string? key = null)
35
void ConfigureCredentials(Action<
AzureMessagingEventHubsProducerSettings
>? configure,
AzureMessagingEventHubsProducerSettings
settings)