2 instantiations of QdrantClientSettings
Aspire.Qdrant.Client (1)
AspireQdrantExtensions.cs (1)
62var settings = new QdrantClientSettings();
Aspire.Qdrant.Client.Tests (1)
ConfigurationTests.cs (1)
11=> Assert.Null(new QdrantClientSettings().Endpoint);
12 references to QdrantClientSettings
Aspire.Qdrant.Client (7)
AspireQdrantExtensions.cs (6)
25/// <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> 31Action<QdrantClientSettings>? configureSettings = null) 42/// <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> 48Action<QdrantClientSettings>? configureSettings = null) 56Action<QdrantClientSettings>? configureSettings, 62var settings = new QdrantClientSettings();
AssemblyInfo.cs (1)
7[assembly: ConfigurationSchema("Aspire:Qdrant:Client", typeof(QdrantClientSettings))]
Aspire.Qdrant.Client.Tests (5)
ConformanceTests.cs (5)
13public class ConformanceTests : ConformanceTests<QdrantClient, QdrantClientSettings> 27protected override void RegisterComponent(HostApplicationBuilder builder, Action<QdrantClientSettings>? configure = null, string? key = null) 50protected override void SetHealthCheck(QdrantClientSettings options, bool enabled) => throw new NotImplementedException(); 52protected override void SetTracing(QdrantClientSettings options, bool enabled) => throw new NotImplementedException(); 54protected override void SetMetrics(QdrantClientSettings options, bool enabled) => throw new NotImplementedException();