ModelMethodContext.TryUpdateModel Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Updates the specified model instance using values from a value provider.
Overloads
TryUpdateModel<TModel>(TModel) |
Updates the specified model instance using values from a value provider. |
TryUpdateModel<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.
TryUpdateModel<TModel>(TModel)
Updates the specified model instance using values from a value provider.
public:
generic <typename TModel>
where TModel : class virtual bool TryUpdateModel(TModel model);
public virtual bool TryUpdateModel<TModel> (TModel model) where TModel : class;
abstract member TryUpdateModel : 'Model -> bool (requires 'Model : null)
override this.TryUpdateModel : 'Model -> bool (requires 'Model : null)
Public Overridable Function TryUpdateModel(Of TModel As Class) (model As TModel) As Boolean
Type Parameters
- TModel
The type of the model.
Parameters
- model
- TModel
The model.
Returns
true
if model binding is successful; otherwise, false
.
Remarks
For a tutorial series on using model binding with Web Forms, see Model Binding and Web Forms.
Applies to
TryUpdateModel<TModel>(TModel, IValueProvider)
Updates the specified model instance using values from the specified value provider.
public:
generic <typename TModel>
where TModel : class virtual bool TryUpdateModel(TModel model, System::Web::ModelBinding::IValueProvider ^ valueProvider);
public virtual bool TryUpdateModel<TModel> (TModel model, System.Web.ModelBinding.IValueProvider valueProvider) where TModel : class;
abstract member TryUpdateModel : 'Model * System.Web.ModelBinding.IValueProvider -> bool (requires 'Model : null)
override this.TryUpdateModel : 'Model * System.Web.ModelBinding.IValueProvider -> bool (requires 'Model : null)
Public Overridable Function TryUpdateModel(Of TModel As Class) (model As TModel, valueProvider As IValueProvider) As Boolean
Type Parameters
- TModel
The type of the model.
Parameters
- model
- TModel
The model.
- valueProvider
- IValueProvider
The value provider.
Returns
true
if model binding is successful; otherwise, false
.
Remarks
For a tutorial series on using model binding with Web Forms, see Model Binding and Web Forms.