2 writes to ServiceUri
Aspire.Azure.Storage.Files.DataLake (2)
AzureDataLakeFileSystemSettings.cs (1)
48ServiceUri = uri;
AzureDataLakeSettings.cs (1)
62ServiceUri = uri;
14 references to ServiceUri
Aspire.Azure.Storage.Files.DataLake (11)
AspireDataLakeExtensions.cs (4)
28/// Neither <see cref="AzureDataLakeSettings.ConnectionString" /> nor <see cref="AzureDataLakeSettings.ServiceUri" /> is provided. 66/// Neither <see cref="AzureDataLakeSettings.ConnectionString" /> nor <see cref="AzureDataLakeSettings.ServiceUri" /> is provided. 101/// Neither <see cref="AzureDataLakeSettings.ConnectionString" /> nor <see cref="AzureDataLakeSettings.ServiceUri" /> is provided. 137/// Neither <see cref="AzureDataLakeSettings.ConnectionString" /> nor <see cref="AzureDataLakeSettings.ServiceUri" /> is provided.
AspireDataLakeExtensions.DataLakeComponent.cs (3)
30if (string.IsNullOrEmpty(connectionString) && settings.ServiceUri is null) 38cred is not null ? new DataLakeServiceClient(settings.ServiceUri, cred, options) : 39new DataLakeServiceClient(settings.ServiceUri, options);
AspireDataLakeExtensions.DataLakeFileSystemComponent.cs (3)
36if (string.IsNullOrEmpty(connectionString) && settings.ServiceUri is null) 44cred is not null ? new DataLakeServiceClient(settings.ServiceUri, cred, options) : 45new DataLakeServiceClient(settings.ServiceUri, options);
AzureDataLakeSettings.cs (1)
18/// If <see cref="ConnectionString" /> is set, it overrides <see cref="ServiceUri" /> and <see cref="Credential" />.
Aspire.Azure.Storage.Files.DataLake.Tests (3)
AzureDataLakeFileSystemSettingsTests.cs (3)
35Assert.Equal("https://example.dfs.core.windows.net/", settings.ServiceUri?.ToString()); 51Assert.Null(settings.ServiceUri); 64Assert.Null(settings.ServiceUri);