75 references to Scoped
Aspire.Components.Common.TestUtilities (1)
Aspire.Microsoft.Data.SqlClient.Tests (1)
Microsoft.AspNetCore.Components.WebView.Test (2)
Microsoft.AspNetCore.Identity.FunctionalTests (1)
Microsoft.DotNet.Internal.DependencyInjection.Testing (2)
Microsoft.Extensions.AI.Tests (8)
Microsoft.Extensions.Caching.SqlServer.Tests (1)
Microsoft.Extensions.Caching.StackExchangeRedis.Tests (2)
Microsoft.Extensions.DependencyInjection (5)
Microsoft.Extensions.DependencyInjection.Abstractions (50)
ServiceDescriptor.cs (20)
532/// and the <see cref="ServiceLifetime.Scoped"/> lifetime.
541return DescribeKeyed<TService, TImplementation>(null, ServiceLifetime.Scoped);
547/// and the <see cref="ServiceLifetime.Scoped"/> lifetime.
557return DescribeKeyed<TService, TImplementation>(serviceKey, ServiceLifetime.Scoped);
563/// and the <see cref="ServiceLifetime.Scoped"/> lifetime.
572return Describe(service, implementationType, ServiceLifetime.Scoped);
578/// and the <see cref="ServiceLifetime.Scoped"/> lifetime.
589return DescribeKeyed(service, serviceKey, implementationType, ServiceLifetime.Scoped);
596/// and the <see cref="ServiceLifetime.Scoped"/> lifetime.
609return Describe(typeof(TService), implementationFactory, ServiceLifetime.Scoped);
616/// and the <see cref="ServiceLifetime.Scoped"/> lifetime.
631return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Scoped);
637/// and the <see cref="ServiceLifetime.Scoped"/> lifetime.
647return Describe(typeof(TService), implementationFactory, ServiceLifetime.Scoped);
653/// and the <see cref="ServiceLifetime.Scoped"/> lifetime.
664return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Scoped);
670/// and the <see cref="ServiceLifetime.Scoped"/> lifetime.
680return Describe(service, implementationFactory, ServiceLifetime.Scoped);
686/// and the <see cref="ServiceLifetime.Scoped"/> lifetime.
697return DescribeKeyed(service, serviceKey, implementationFactory, ServiceLifetime.Scoped);
Microsoft.Extensions.Http (2)