SimpleTypeModelBinder Class

Definition

An IModelBinder for simple types.

public ref class SimpleTypeModelBinder : Microsoft::AspNetCore::Mvc::ModelBinding::IModelBinder
public class SimpleTypeModelBinder : Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder
type SimpleTypeModelBinder = class
    interface IModelBinder
Public Class SimpleTypeModelBinder
Implements IModelBinder
Inheritance
SimpleTypeModelBinder
Derived
Implements

Constructors

SimpleTypeModelBinder(Type)
Obsolete.

This constructor is obsolete and will be removed in a future version. The recommended alternative is the overload that also takes an ILoggerFactory.

Initializes a new instance of SimpleTypeModelBinder.

SimpleTypeModelBinder(Type, ILoggerFactory)

Initializes a new instance of SimpleTypeModelBinder.

Methods

BindModelAsync(ModelBindingContext)

Attempts to bind a model.

CheckModel(ModelBindingContext, ValueProviderResult, Object)

If the model is null, verifies that it is allowed to be null, otherwise notifies the ModelBindingContext.ModelState about the invalid valueProviderResult. Sets the P:ModelBindingContext.Result to the model if successful.

Applies to