ServiceDescriptor.Scoped Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Aşırı Yüklemeler
| Scoped(Type, Func<IServiceProvider,Object>) |
Belirtilen |
| Scoped(Type, Type) |
belirtilen |
| Scoped<TService,TImplementation>(Func<IServiceProvider,TImplementation>) |
Belirtilen |
| Scoped<TService,TImplementation>() |
Belirtilen |
| Scoped<TService>(Func<IServiceProvider,TService>) |
Belirtilen |
Scoped(Type, Func<IServiceProvider,Object>)
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
Belirtilen service, implementationFactoryve Scoped yaşam süresi ile bir örneği ServiceDescriptor oluşturur.
public:
static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ Scoped(Type ^ service, Func<IServiceProvider ^, System::Object ^> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Scoped(Type service, Func<IServiceProvider,object> implementationFactory);
static member Scoped : Type * Func<IServiceProvider, obj> -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor
Public Shared Function Scoped (service As Type, implementationFactory As Func(Of IServiceProvider, Object)) As ServiceDescriptor
Parametreler
- service
- Type
Hizmetin türü.
- implementationFactory
- Func<IServiceProvider,Object>
Hizmet uygulamasının yeni örneklerini oluşturmak için bir fabrika.
Döndürülenler
Yeni bir ServiceDescriptor örneği.
Şunlara uygulanır
Scoped(Type, Type)
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
belirtilen service ve implementationTypeScoped yaşam süresi ile bir örneği ServiceDescriptor oluşturur.
public:
static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ Scoped(Type ^ service, Type ^ implementationType);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Scoped(Type service, Type implementationType);
static member Scoped : Type * Type -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor
Public Shared Function Scoped (service As Type, implementationType As Type) As ServiceDescriptor
Parametreler
- service
- Type
Hizmetin türü.
- implementationType
- Type
Uygulamanın türü.
Döndürülenler
Yeni bir ServiceDescriptor örneği.
Şunlara uygulanır
Scoped<TService,TImplementation>(Func<IServiceProvider,TImplementation>)
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
Belirtilen TService, , TImplementationimplementationFactoryve Scoped yaşam süresi ile bir örneği ServiceDescriptor oluşturur.
public:
generic <typename TService, typename TImplementation>
where TService : class where TImplementation : class, TService static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ Scoped(Func<IServiceProvider ^, TImplementation> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Scoped<TService,TImplementation>(Func<IServiceProvider,TImplementation> implementationFactory) where TService : class where TImplementation : class, TService;
static member Scoped : Func<IServiceProvider, #'Service> -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function Scoped(Of TService As Class, TImplementation As Class) (implementationFactory As Func(Of IServiceProvider, TImplementation)) As ServiceDescriptor
Tür Parametreleri
- TService
Hizmetin türü.
- TImplementation
Uygulamanın türü.
Parametreler
- implementationFactory
- Func<IServiceProvider,TImplementation>
Hizmet uygulamasının yeni örneklerini oluşturmak için bir fabrika.
Döndürülenler
Yeni bir ServiceDescriptor örneği.
Şunlara uygulanır
Scoped<TService,TImplementation>()
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
Belirtilen TService, TImplementationve Scoped yaşam süresi ile bir örneği ServiceDescriptor oluşturur.
public:
generic <typename TService, typename TImplementation>
where TService : class where TImplementation : class, TService static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ Scoped();
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Scoped<TService,TImplementation>() where TService : class where TImplementation : class, TService;
static member Scoped : unit -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function Scoped(Of TService As Class, TImplementation As Class) () As ServiceDescriptor
Tür Parametreleri
- TService
Hizmetin türü.
- TImplementation
Uygulamanın türü.
Döndürülenler
Yeni bir ServiceDescriptor örneği.
Şunlara uygulanır
Scoped<TService>(Func<IServiceProvider,TService>)
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
Belirtilen TService, implementationFactoryve Scoped yaşam süresi ile bir örneği ServiceDescriptor oluşturur.
public:
generic <typename TService>
where TService : class static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ Scoped(Func<IServiceProvider ^, TService> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Scoped<TService>(Func<IServiceProvider,TService> implementationFactory) where TService : class;
static member Scoped : Func<IServiceProvider, 'Service (requires 'Service : null)> -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function Scoped(Of TService As Class) (implementationFactory As Func(Of IServiceProvider, TService)) As ServiceDescriptor
Tür Parametreleri
- TService
Hizmetin türü.
Parametreler
- implementationFactory
- Func<IServiceProvider,TService>
Hizmet uygulamasının yeni örneklerini oluşturmak için bir fabrika.
Döndürülenler
Yeni bir ServiceDescriptor örneği.