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>
サービスを実装するファクトリ。
戻り値
さらに呼び出しをチェーンできるように、マップ。
適用対象
Entity Framework