2 instantiations of InferredServiceClass
Microsoft.AspNetCore.Mvc.ApiExplorer.Test (2)
EndpointMetadataApiDescriptionProviderTest.cs (2)
1534serviceCollection.AddSingleton<IInferredServiceInterface>(new InferredServiceClass()); 1535serviceCollection.AddKeyedSingleton("foo", new InferredServiceClass());
2 references to InferredServiceClass
Microsoft.AspNetCore.Mvc.ApiExplorer.Test (2)
EndpointMetadataApiDescriptionProviderTest.cs (2)
582Assert.Empty(GetApiDescription(([FromServices] InferredServiceClass foo) => { }).ParameterDescriptions); 583Assert.Empty(GetApiDescription(([FromKeyedServices("foo")] InferredServiceClass foo) => { }).ParameterDescriptions);