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