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> 69/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureDataTablesSettings.ConnectionString"/> nor <see cref="AzureDataTablesSettings.ServiceUri"/> is provided.</exception> 105if (string.IsNullOrEmpty(connectionString) && settings.ServiceUri is null) 111cred is not null ? new TableServiceClient(settings.ServiceUri, cred, options) : 112new TableServiceClient(settings.ServiceUri, options);
AzureDataTablesSettings.cs (1)
18/// If <see cref="ConnectionString"/> is set, it overrides <see cref="ServiceUri"/> and <see cref="Credential"/>.