Click or drag to resize

RecroGridRGServiceParamsBinderBindModelAsync Method

Attempts to bind a model.

Namespace:  Recrovit.RecroGridFramework
Assembly:  Recrovit.RecroGrid (in Recrovit.RecroGrid.dll) Version: 6.0.0
Syntax
C#
public Task BindModelAsync(
	ModelBindingContext bindingContext
)

Parameters

bindingContext
Type: Microsoft.AspNetCore.Mvc.ModelBindingModelBindingContext
The ModelBindingContext.

Return Value

Type: Task

A Task which will complete when the model binding process completes.

If model binding was successful, the Result should have IsModelSet set to true.

A model binder that completes successfully should set Result to a value returned from Success(Object).

Implements

IModelBinderBindModelAsync(ModelBindingContext)
See Also