ServiceCollectionMap.TryAddTransient Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
TryAddTransient(Type, Func<IServiceProvider,Object>) |
Dodaje usługę zaimplementowaną przez daną fabrykę Transient , jeśli żadna usługa dla danego typu usługi nie została już zarejestrowana. |
TryAddTransient(Type, Type) |
Dodaje usługę Transient zaimplementowaną przez określony typ, jeśli żadna usługa dla danego typu usługi nie została już zarejestrowana. |
TryAddTransient<TService,TImplementation>(Func<IServiceProvider,TImplementation>) |
Dodaje usługę zaimplementowaną przez daną fabrykę Transient , jeśli żadna usługa dla danego typu usługi nie została już zarejestrowana. |
TryAddTransient<TService,TImplementation>() |
Dodaje usługę Transient zaimplementowaną przez określony typ, jeśli żadna usługa dla danego typu usługi nie została już zarejestrowana. |
TryAddTransient<TService>(Func<IServiceProvider,TService>) |
Dodaje usługę zaimplementowaną przez daną fabrykę Transient , jeśli żadna usługa dla danego typu usługi nie została już zarejestrowana. |
TryAddTransient(Type, Func<IServiceProvider,Object>)
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
Dodaje usługę zaimplementowaną przez daną fabrykę Transient , jeśli żadna usługa dla danego typu usługi nie została już zarejestrowana.
public virtual Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap TryAddTransient (Type serviceType, Func<IServiceProvider,object> factory);
abstract member TryAddTransient : Type * Func<IServiceProvider, obj> -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap
override this.TryAddTransient : Type * Func<IServiceProvider, obj> -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap
Public Overridable Function TryAddTransient (serviceType As Type, factory As Func(Of IServiceProvider, Object)) As ServiceCollectionMap
Parametry
- serviceType
- Type
Umowa dotycząca usługi.
- factory
- Func<IServiceProvider,Object>
Fabryka, która implementuje usługę.
Zwraca
Mapa, dzięki czemu można połączyć kolejne wywołania.
Dotyczy
TryAddTransient(Type, Type)
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
Dodaje usługę Transient zaimplementowaną przez określony typ, jeśli żadna usługa dla danego typu usługi nie została już zarejestrowana.
public virtual Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap TryAddTransient (Type serviceType, Type implementationType);
abstract member TryAddTransient : Type * Type -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap
override this.TryAddTransient : Type * Type -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap
Public Overridable Function TryAddTransient (serviceType As Type, implementationType As Type) As ServiceCollectionMap
Parametry
- serviceType
- Type
Umowa dotycząca usługi.
- implementationType
- Type
Konkretny typ, który implementuje usługę.
Zwraca
Mapa, dzięki czemu można połączyć kolejne wywołania.
Dotyczy
TryAddTransient<TService,TImplementation>(Func<IServiceProvider,TImplementation>)
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
Dodaje usługę zaimplementowaną przez daną fabrykę Transient , jeśli żadna usługa dla danego typu usługi nie została już zarejestrowana.
public virtual Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap TryAddTransient<TService,TImplementation> (Func<IServiceProvider,TImplementation> factory) where TService : class where TImplementation : class, TService;
abstract member TryAddTransient : Func<IServiceProvider, #'Service> -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap (requires 'Service : null)
override this.TryAddTransient : Func<IServiceProvider, #'Service> -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap (requires 'Service : null)
Public Overridable Function TryAddTransient(Of TService As Class, TImplementation As Class) (factory As Func(Of IServiceProvider, TImplementation)) As ServiceCollectionMap
Parametry typu
- TService
Umowa dotycząca usługi.
- TImplementation
Konkretny typ tworzony przez daną fabrykę.
Parametry
- factory
- Func<IServiceProvider,TImplementation>
Fabryka, która implementuje usługę.
Zwraca
Mapa, dzięki czemu można połączyć kolejne wywołania.
Dotyczy
TryAddTransient<TService,TImplementation>()
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
Dodaje usługę Transient zaimplementowaną przez określony typ, jeśli żadna usługa dla danego typu usługi nie została już zarejestrowana.
public virtual Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap TryAddTransient<TService,TImplementation> () where TService : class where TImplementation : class, TService;
abstract member TryAddTransient : unit -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap (requires 'Service : null)
override this.TryAddTransient : unit -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap (requires 'Service : null)
Public Overridable Function TryAddTransient(Of TService As Class, TImplementation As Class) () As ServiceCollectionMap
Parametry typu
- TService
Umowa dotycząca usługi.
- TImplementation
Konkretny typ, który implementuje usługę.
Zwraca
Mapa, dzięki czemu można połączyć kolejne wywołania.
Dotyczy
TryAddTransient<TService>(Func<IServiceProvider,TService>)
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
- Źródło:
- ServiceCollectionMap.cs
Dodaje usługę zaimplementowaną przez daną fabrykę Transient , jeśli żadna usługa dla danego typu usługi nie została już zarejestrowana.
public virtual Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap TryAddTransient<TService> (Func<IServiceProvider,TService> factory) where TService : class;
abstract member TryAddTransient : Func<IServiceProvider, 'Service (requires 'Service : null)> -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap (requires 'Service : null)
override this.TryAddTransient : Func<IServiceProvider, 'Service (requires 'Service : null)> -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap (requires 'Service : null)
Public Overridable Function TryAddTransient(Of TService As Class) (factory As Func(Of IServiceProvider, TService)) As ServiceCollectionMap
Parametry typu
- TService
Umowa dotycząca usługi.
Parametry
- factory
- Func<IServiceProvider,TService>
Fabryka, która implementuje usługę.
Zwraca
Mapa, dzięki czemu można połączyć kolejne wywołania.