1 write to ServiceUri
Aspire.Azure.Data.Tables (1)
AzureDataTablesSettings.cs (1)
58ServiceUri = uri;
6 references to ServiceUri
Aspire.Azure.Data.Tables (6)
AspireTablesExtensions.cs (5)
33/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureDataTablesSettings.ConnectionString"/> nor <see cref="AzureDataTablesSettings.ServiceUri"/> is provided.</exception> 52/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureDataTablesSettings.ConnectionString"/> nor <see cref="AzureDataTablesSettings.ServiceUri"/> is provided.</exception> 73if (string.IsNullOrEmpty(connectionString) && settings.ServiceUri is null) 79cred is not null ? new TableServiceClient(settings.ServiceUri, cred, options) : 80new TableServiceClient(settings.ServiceUri, options);
AzureDataTablesSettings.cs (1)
18/// If <see cref="ConnectionString"/> is set, it overrides <see cref="ServiceUri"/> and <see cref="Credential"/>.