88 references to Transient
Aspire.Components.Common.TestUtilities (1)
Microsoft.AspNetCore.Mvc.Core.Test (3)
Microsoft.AspNetCore.Mvc.Localization.Test (9)
Microsoft.AspNetCore.Mvc.Razor.Test (6)
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (2)
Microsoft.Extensions.AI.Tests (12)
Microsoft.Extensions.DependencyInjection (2)
Microsoft.Extensions.DependencyInjection.Abstractions (50)
ServiceDescriptor.cs (20)
356/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
365return DescribeKeyed<TService, TImplementation>(null, ServiceLifetime.Transient);
371/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
381return DescribeKeyed<TService, TImplementation>(serviceKey, ServiceLifetime.Transient);
387/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
399return Describe(service, implementationType, ServiceLifetime.Transient);
405/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
419return DescribeKeyed(service, serviceKey, implementationType, ServiceLifetime.Transient);
426/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
439return Describe(typeof(TService), implementationFactory, ServiceLifetime.Transient);
446/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
461return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Transient);
467/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
477return Describe(typeof(TService), implementationFactory, ServiceLifetime.Transient);
483/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
494return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Transient);
500/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
510return Describe(service, implementationFactory, ServiceLifetime.Transient);
516/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
527return DescribeKeyed(service, serviceKey, implementationFactory, ServiceLifetime.Transient);
Microsoft.Extensions.Http (3)