Sdílet prostřednictvím


SimpleModelBinderProvider Konstruktory

Definice

Inicializuje novou instanci SimpleModelBinderProvider třídy .

Přetížení

SimpleModelBinderProvider(Type, Func<IModelBinder>)

Inicializuje novou instanci SimpleModelBinderProvider třídy pomocí zadaného typu modelu a objektu pro vytváření pořadače modelu.

SimpleModelBinderProvider(Type, IModelBinder)

Inicializuje novou instanci SimpleModelBinderProvider třídy pomocí zadaného typu modelu a pořadače modelu.

SimpleModelBinderProvider(Type, Func<IModelBinder>)

Inicializuje novou instanci SimpleModelBinderProvider třídy pomocí zadaného typu modelu a objektu pro vytváření pořadače modelu.

public:
 SimpleModelBinderProvider(Type ^ modelType, Func<System::Web::ModelBinding::IModelBinder ^> ^ modelBinderFactory);
public SimpleModelBinderProvider (Type modelType, Func<System.Web.ModelBinding.IModelBinder> modelBinderFactory);
new System.Web.ModelBinding.SimpleModelBinderProvider : Type * Func<System.Web.ModelBinding.IModelBinder> -> System.Web.ModelBinding.SimpleModelBinderProvider
Public Sub New (modelType As Type, modelBinderFactory As Func(Of IModelBinder))

Parametry

modelType
Type

Typ modelu.

modelBinderFactory
Func<IModelBinder>

Objekt pro vytváření pořadačů modelů.

Platí pro

SimpleModelBinderProvider(Type, IModelBinder)

Inicializuje novou instanci SimpleModelBinderProvider třídy pomocí zadaného typu modelu a pořadače modelu.

public:
 SimpleModelBinderProvider(Type ^ modelType, System::Web::ModelBinding::IModelBinder ^ modelBinder);
public SimpleModelBinderProvider (Type modelType, System.Web.ModelBinding.IModelBinder modelBinder);
new System.Web.ModelBinding.SimpleModelBinderProvider : Type * System.Web.ModelBinding.IModelBinder -> System.Web.ModelBinding.SimpleModelBinderProvider
Public Sub New (modelType As Type, modelBinder As IModelBinder)

Parametry

modelType
Type

Typ modelu.

modelBinder
IModelBinder

Pořadač modelu.

Výjimky

Parametr modelType nebo modelBinder je null.

Platí pro