PageArgumentBinder.BindModelAsync Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
BindModelAsync(PageContext, Type, Object, String) | |
BindModelAsync<TModel>(PageContext, String) | |
BindModelAsync<TModel>(PageContext, TModel, String) |
BindModelAsync(PageContext, Type, Object, String)
- Origine:
- PageArgumentBinder.cs
- Origine:
- 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)
Parametri
- context
- PageContext
- type
- Type
- default
- Object
- name
- String
Restituisce
Si applica a
BindModelAsync<TModel>(PageContext, String)
- Origine:
- PageArgumentBinder.cs
- Origine:
- 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)
Parametri di tipo
- TModel
Parametri
- context
- PageContext
- name
- String
Restituisce
Task<TModel>
Si applica a
BindModelAsync<TModel>(PageContext, TModel, String)
- Origine:
- PageArgumentBinder.cs
- Origine:
- 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)
Parametri di tipo
- TModel
Parametri
- context
- PageContext
- default
- TModel
- name
- String
Restituisce
Task<TModel>