次の方法で共有


FactoryMethodBinding コンストラクター

定義

オーバーロード

FactoryMethodBinding(MethodInfo, IReadOnlyList<ParameterBinding>, Type)

静的ファクトリ メソッドの新しい FactoryMethodBinding インスタンスを作成します。

FactoryMethodBinding(Object, MethodInfo, IReadOnlyList<ParameterBinding>, Type)

非静的ファクトリ メソッドの新しい FactoryMethodBinding インスタンスを作成します。

FactoryMethodBinding(MethodInfo, IReadOnlyList<ParameterBinding>, Type)

静的ファクトリ メソッドの新しい FactoryMethodBinding インスタンスを作成します。

public FactoryMethodBinding (System.Reflection.MethodInfo factoryMethod, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.ParameterBinding> parameterBindings, Type runtimeType);
new Microsoft.EntityFrameworkCore.Metadata.FactoryMethodBinding : System.Reflection.MethodInfo * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.ParameterBinding> * Type -> Microsoft.EntityFrameworkCore.Metadata.FactoryMethodBinding
Public Sub New (factoryMethod As MethodInfo, parameterBindings As IReadOnlyList(Of ParameterBinding), runtimeType As Type)

パラメーター

factoryMethod
MethodInfo

バインドするファクトリ メソッド。

parameterBindings
IReadOnlyList<ParameterBinding>

使用するパラメーター。

runtimeType
Type

ファクトリ メソッドによって作成されたインスタンスの CLR 型。

適用対象

FactoryMethodBinding(Object, MethodInfo, IReadOnlyList<ParameterBinding>, Type)

非静的ファクトリ メソッドの新しい FactoryMethodBinding インスタンスを作成します。

public FactoryMethodBinding (object factoryInstance, System.Reflection.MethodInfo factoryMethod, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.ParameterBinding> parameterBindings, Type runtimeType);
new Microsoft.EntityFrameworkCore.Metadata.FactoryMethodBinding : obj * System.Reflection.MethodInfo * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.ParameterBinding> * Type -> Microsoft.EntityFrameworkCore.Metadata.FactoryMethodBinding
Public Sub New (factoryInstance As Object, factoryMethod As MethodInfo, parameterBindings As IReadOnlyList(Of ParameterBinding), runtimeType As Type)

パラメーター

factoryInstance
Object

ファクトリ メソッドを呼び出すオブジェクト。

factoryMethod
MethodInfo

バインドするファクトリ メソッド。

parameterBindings
IReadOnlyList<ParameterBinding>

使用するパラメーター。

runtimeType
Type

ファクトリ メソッドによって作成されたインスタンスの CLR 型。

適用対象