2 writes to FullyQualifiedNamespace
Aspire.Azure.Messaging.EventHubs (2)
AzureMessagingEventHubsSettings.cs (2)
109
FullyQualifiedNamespace
= connectionString;
139
FullyQualifiedNamespace
= endpoint.ToString();
22 references to FullyQualifiedNamespace
Aspire.Azure.Messaging.EventHubs (21)
AspireEventHubsExtensions.cs (10)
29
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
52
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
75
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
98
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
121
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
144
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
167
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
192
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
215
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
238
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
AzureMessagingEventHubsSettings.cs (1)
28
/// If <see cref="ConnectionString"/> is set, it overrides <see cref="
FullyQualifiedNamespace
"/> and <see cref="Credential"/>.
EventHubBufferedProducerClientComponent.cs (1)
40
return new EventHubBufferedProducerClient(settings.
FullyQualifiedNamespace
, settings.EventHubName, cred, options);
EventHubConsumerClientComponent.cs (1)
41
return new EventHubConsumerClient(consumerGroup, settings.
FullyQualifiedNamespace
, settings.EventHubName, cred, options);
EventHubProducerClientComponent.cs (1)
39
return new EventHubProducerClient(settings.
FullyQualifiedNamespace
, settings.EventHubName, cred, options);
EventHubsComponent.cs (5)
47
new EventHubProducerClient(settings.
FullyQualifiedNamespace
, settings.EventHubName, settings.Credential ?? new DefaultAzureCredential(), producerClientOptions);
82
ns = string.IsNullOrWhiteSpace(settings.
FullyQualifiedNamespace
)
84
: new Uri(settings.
FullyQualifiedNamespace
).Host;
113
if (string.IsNullOrEmpty(connectionString) && string.IsNullOrEmpty(settings.
FullyQualifiedNamespace
))
141
else if (!string.IsNullOrWhiteSpace(settings.
FullyQualifiedNamespace
) && string.IsNullOrWhiteSpace(settings.EventHubName))
EventProcessorClientComponent.cs (1)
55
settings.
FullyQualifiedNamespace
,
PartitionReceiverClientComponent.cs (1)
52
settings.
FullyQualifiedNamespace
,
Aspire.Azure.Messaging.EventHubs.Tests (1)
AspireEventHubsExtensionsTests.cs (1)
660
Assert.Equal(testInfo.FullyQualifiedNamespace, settings.
FullyQualifiedNamespace
);