86 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 (10)
Microsoft.Extensions.DependencyInjection (2)
Microsoft.Extensions.DependencyInjection.Abstractions (50)
ServiceDescriptor.cs (20)
355/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
364return DescribeKeyed<TService, TImplementation>(null, ServiceLifetime.Transient);
370/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
380return DescribeKeyed<TService, TImplementation>(serviceKey, ServiceLifetime.Transient);
386/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
398return Describe(service, implementationType, ServiceLifetime.Transient);
404/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
418return DescribeKeyed(service, serviceKey, implementationType, ServiceLifetime.Transient);
425/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
438return Describe(typeof(TService), implementationFactory, ServiceLifetime.Transient);
445/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
460return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Transient);
466/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
476return Describe(typeof(TService), implementationFactory, ServiceLifetime.Transient);
482/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
493return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Transient);
499/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
509return Describe(service, implementationFactory, ServiceLifetime.Transient);
515/// and the <see cref="ServiceLifetime.Transient"/> lifetime.
526return DescribeKeyed(service, serviceKey, implementationFactory, ServiceLifetime.Transient);
Microsoft.Extensions.Http (3)