1 write to FullyQualifiedNamespace
Aspire.Azure.Messaging.EventHubs (1)
AzureMessagingEventHubsSettings.cs (1)
91
FullyQualifiedNamespace
= connectionString;
20 references to FullyQualifiedNamespace
Aspire.Azure.Messaging.EventHubs (20)
AspireEventHubsExtensions.cs (10)
29
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
49
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
71
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
91
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
113
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
133
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
155
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
177
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
199
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
219
/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureMessagingEventHubsSettings.ConnectionString"/> nor <see cref="AzureMessagingEventHubsSettings.
FullyQualifiedNamespace
"/> is provided.</exception>
AzureMessagingEventHubsSettings.cs (1)
27
/// 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 (4)
54
ns = string.IsNullOrWhiteSpace(settings.
FullyQualifiedNamespace
)
56
: new Uri(settings.
FullyQualifiedNamespace
).Host;
85
if (string.IsNullOrEmpty(connectionString) && string.IsNullOrEmpty(settings.
FullyQualifiedNamespace
))
111
else if (!string.IsNullOrWhiteSpace(settings.
FullyQualifiedNamespace
) && string.IsNullOrWhiteSpace(settings.EventHubName))
EventProcessorClientComponent.cs (1)
55
settings.
FullyQualifiedNamespace
,
PartitionReceiverClientComponent.cs (1)
51
settings.
FullyQualifiedNamespace
,