ModelMethodContext.UpdateModel Method

Definition

Updates the specified model instance using values from a value provider.

Overloads

UpdateModel<TModel>(TModel)

Updates the specified model instance using values from a value provider.

UpdateModel<TModel>(TModel, IValueProvider)

Updates the specified model instance using values from the specified value provider.

Remarks

For a tutorial series on using model binding with Web Forms, see Model Binding and Web Forms.

UpdateModel<TModel>(TModel)

Updates the specified model instance using values from a value provider.

public:
generic <typename TModel>
 where TModel : class virtual void UpdateModel(TModel model);
public virtual void UpdateModel<TModel> (TModel model) where TModel : class;
abstract member UpdateModel : 'Model -> unit (requires 'Model : null)
override this.UpdateModel : 'Model -> unit (requires 'Model : null)
Public Overridable Sub UpdateModel(Of TModel As Class) (model As TModel)

Type Parameters

TModel

The type of the model.

Parameters

model
TModel

The model.

Remarks

For a tutorial series on using model binding with Web Forms, see Model Binding and Web Forms.

Applies to

UpdateModel<TModel>(TModel, IValueProvider)

Updates the specified model instance using values from the specified value provider.

public:
generic <typename TModel>
 where TModel : class virtual void UpdateModel(TModel model, System::Web::ModelBinding::IValueProvider ^ valueProvider);
public virtual void UpdateModel<TModel> (TModel model, System.Web.ModelBinding.IValueProvider valueProvider) where TModel : class;
abstract member UpdateModel : 'Model * System.Web.ModelBinding.IValueProvider -> unit (requires 'Model : null)
override this.UpdateModel : 'Model * System.Web.ModelBinding.IValueProvider -> unit (requires 'Model : null)
Public Overridable Sub UpdateModel(Of TModel As Class) (model As TModel, valueProvider As IValueProvider)

Type Parameters

TModel

The type of the model.

Parameters

model
TModel

The model.

valueProvider
IValueProvider

The value provider.

Remarks

For a tutorial series on using model binding with Web Forms, see Model Binding and Web Forms.

Applies to