다음을 통해 공유


FactoryMethodBinding 생성자

정의

오버로드

FactoryMethodBinding(MethodInfo, IReadOnlyList<ParameterBinding>, Type)

정적 팩터리 메서드에 대한 새 FactoryMethodBinding instance 만듭니다.

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

비정적 팩터리 메서드에 대한 새 FactoryMethodBinding instance 만듭니다.

FactoryMethodBinding(MethodInfo, IReadOnlyList<ParameterBinding>, Type)

정적 팩터리 메서드에 대한 새 FactoryMethodBinding instance 만듭니다.

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

팩터리 메서드에서 만든 instance CLR 형식입니다.

적용 대상

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

비정적 팩터리 메서드에 대한 새 FactoryMethodBinding instance 만듭니다.

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

팩터리 메서드에서 만든 instance CLR 형식입니다.

적용 대상