ServiceCollectionMap.TryAddTransient 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
TryAddTransient(Type, Func<IServiceProvider,Object>) |
Transient如果指定的服務類型尚未註冊任何服務,則加入由指定處理站所實作的服務。 |
TryAddTransient(Type, Type) |
Transient如果指定的服務類型尚未註冊任何服務,則加入由指定具體型別所實作的服務。 |
TryAddTransient<TService,TImplementation>(Func<IServiceProvider,TImplementation>) |
Transient如果指定的服務類型尚未註冊任何服務,則加入由指定處理站所實作的服務。 |
TryAddTransient<TService,TImplementation>() |
Transient如果指定的服務類型尚未註冊任何服務,則加入由指定具體型別所實作的服務。 |
TryAddTransient<TService>(Func<IServiceProvider,TService>) |
Transient如果指定的服務類型尚未註冊任何服務,則加入由指定處理站所實作的服務。 |
TryAddTransient(Type, Func<IServiceProvider,Object>)
Transient如果指定的服務類型尚未註冊任何服務,則加入由指定處理站所實作的服務。
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
參數
- serviceType
- Type
服務的合約。
- factory
- Func<IServiceProvider,Object>
實作服務的處理站。
傳回
地圖,讓進一步的呼叫可以鏈結。
適用於
TryAddTransient(Type, Type)
Transient如果指定的服務類型尚未註冊任何服務,則加入由指定具體型別所實作的服務。
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
參數
- serviceType
- Type
服務的合約。
- implementationType
- Type
實作服務的具體型別。
傳回
地圖,讓進一步的呼叫可以鏈結。
適用於
TryAddTransient<TService,TImplementation>(Func<IServiceProvider,TImplementation>)
Transient如果指定的服務類型尚未註冊任何服務,則加入由指定處理站所實作的服務。
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
類型參數
- TService
服務的合約。
- TImplementation
指定處理站所建立的具體型別。
參數
- factory
- Func<IServiceProvider,TImplementation>
實作服務的處理站。
傳回
地圖,讓進一步的呼叫可以鏈結。
適用於
TryAddTransient<TService,TImplementation>()
Transient如果指定的服務類型尚未註冊任何服務,則加入由指定具體型別所實作的服務。
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
類型參數
- TService
服務的合約。
- TImplementation
實作服務的具體型別。
傳回
地圖,讓進一步的呼叫可以鏈結。
適用於
TryAddTransient<TService>(Func<IServiceProvider,TService>)
Transient如果指定的服務類型尚未註冊任何服務,則加入由指定處理站所實作的服務。
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
類型參數
- TService
服務的合約。
參數
- factory
- Func<IServiceProvider,TService>
實作服務的處理站。
傳回
地圖,讓進一步的呼叫可以鏈結。