80 references to Transient
Aspire.Components.Common.Tests (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 (4)
Microsoft.Extensions.DependencyInjection (2)
Microsoft.Extensions.DependencyInjection.Abstractions (50)
ServiceDescriptor.cs (20)
334/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
343return DescribeKeyed<TService, TImplementation>(null, ServiceLifetime.Transient);
349/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
359return DescribeKeyed<TService, TImplementation>(serviceKey, ServiceLifetime.Transient);
365/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
377return Describe(service, implementationType, ServiceLifetime.Transient);
383/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
397return DescribeKeyed(service, serviceKey, implementationType, ServiceLifetime.Transient);
404/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
417return Describe(typeof(TService), implementationFactory, ServiceLifetime.Transient);
424/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
439return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Transient);
445/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
455return Describe(typeof(TService), implementationFactory, ServiceLifetime.Transient);
461/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
472return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Transient);
478/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
488return Describe(service, implementationFactory, ServiceLifetime.Transient);
494/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
505return DescribeKeyed(service, serviceKey, implementationFactory, ServiceLifetime.Transient);
Microsoft.Extensions.Http (3)