4 instantiations of QdrantClientSettings
Aspire.Qdrant.Client (1)
AspireQdrantExtensions.cs (1)
63var settings = new QdrantClientSettings();
Aspire.Qdrant.Client.Tests (3)
ConfigurationTests.cs (3)
11=> Assert.Null(new QdrantClientSettings().Endpoint); 15Assert.False(new QdrantClientSettings().DisableHealthChecks); 19Assert.Null(new QdrantClientSettings().HealthCheckTimeout);
12 references to QdrantClientSettings
Aspire.Qdrant.Client (7)
AspireQdrantExtensions.cs (6)
27/// <param name="configureSettings">An optional method that can be used for customizing the <see cref="QdrantClientSettings"/>. It's invoked after the settings are read from the configuration.</param> 33Action<QdrantClientSettings>? configureSettings = null) 44/// <param name="configureSettings">An optional method that can be used for customizing the <see cref="QdrantClientSettings"/>. It's invoked after the settings are read from the configuration.</param> 50Action<QdrantClientSettings>? configureSettings = null) 57Action<QdrantClientSettings>? configureSettings, 63var settings = new QdrantClientSettings();
AssemblyInfo.cs (1)
7[assembly: ConfigurationSchema("Aspire:Qdrant:Client", typeof(QdrantClientSettings))]
Aspire.Qdrant.Client.Tests (5)
ConformanceTests.cs (5)
14public class ConformanceTests : ConformanceTests<QdrantClient, QdrantClientSettings>, IClassFixture<QdrantContainerFixture> 42protected override void RegisterComponent(HostApplicationBuilder builder, Action<QdrantClientSettings>? configure = null, string? key = null) 82protected override void SetHealthCheck(QdrantClientSettings options, bool enabled) 87protected override void SetTracing(QdrantClientSettings options, bool enabled) => throw new NotImplementedException(); 89protected override void SetMetrics(QdrantClientSettings options, bool enabled) => throw new NotImplementedException();