PageArgumentBinder.BindModelAsync 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.
Overloads
BindModelAsync(PageContext, Type, Object, String) | |
BindModelAsync<TModel>(PageContext, String) | |
BindModelAsync<TModel>(PageContext, TModel, String) |
BindModelAsync(PageContext, Type, Object, String)
- Source:
- PageArgumentBinder.cs
- Source:
- PageArgumentBinder.cs
public:
System::Threading::Tasks::Task<System::Object ^> ^ BindModelAsync(Microsoft::AspNetCore::Mvc::RazorPages::PageContext ^ context, Type ^ type, System::Object ^ default, System::String ^ name);
public System.Threading.Tasks.Task<object> BindModelAsync (Microsoft.AspNetCore.Mvc.RazorPages.PageContext context, Type type, object default, string name);
member this.BindModelAsync : Microsoft.AspNetCore.Mvc.RazorPages.PageContext * Type * obj * string -> System.Threading.Tasks.Task<obj>
Public Function BindModelAsync (context As PageContext, type As Type, default As Object, name As String) As Task(Of Object)
Parameters
- context
- PageContext
- type
- Type
- default
- Object
- name
- String
Returns
Applies to
BindModelAsync<TModel>(PageContext, String)
- Source:
- PageArgumentBinder.cs
- Source:
- PageArgumentBinder.cs
public:
generic <typename TModel>
System::Threading::Tasks::Task<TModel> ^ BindModelAsync(Microsoft::AspNetCore::Mvc::RazorPages::PageContext ^ context, System::String ^ name);
public System.Threading.Tasks.Task<TModel> BindModelAsync<TModel> (Microsoft.AspNetCore.Mvc.RazorPages.PageContext context, string name);
member this.BindModelAsync : Microsoft.AspNetCore.Mvc.RazorPages.PageContext * string -> System.Threading.Tasks.Task<'Model>
Public Function BindModelAsync(Of TModel) (context As PageContext, name As String) As Task(Of TModel)
Type Parameters
- TModel
Parameters
- context
- PageContext
- name
- String
Returns
Task<TModel>
Applies to
BindModelAsync<TModel>(PageContext, TModel, String)
- Source:
- PageArgumentBinder.cs
- Source:
- PageArgumentBinder.cs
public:
generic <typename TModel>
System::Threading::Tasks::Task<TModel> ^ BindModelAsync(Microsoft::AspNetCore::Mvc::RazorPages::PageContext ^ context, TModel default, System::String ^ name);
public System.Threading.Tasks.Task<TModel> BindModelAsync<TModel> (Microsoft.AspNetCore.Mvc.RazorPages.PageContext context, TModel default, string name);
member this.BindModelAsync : Microsoft.AspNetCore.Mvc.RazorPages.PageContext * 'Model * string -> System.Threading.Tasks.Task<'Model>
Public Function BindModelAsync(Of TModel) (context As PageContext, default As TModel, name As String) As Task(Of TModel)
Type Parameters
- TModel
Parameters
- context
- PageContext
- default
- TModel
- name
- String
Returns
Task<TModel>