PageArgumentBinder.BindModelAsync 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
BindModelAsync(PageContext, Type, Object, String) | |
BindModelAsync<TModel>(PageContext, String) | |
BindModelAsync<TModel>(PageContext, TModel, String) |
BindModelAsync(PageContext, Type, Object, String)
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)
參數
- context
- PageContext
- type
- Type
- default
- Object
- name
- String
傳回
適用於
BindModelAsync<TModel>(PageContext, String)
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)
類型參數
- TModel
參數
- context
- PageContext
- name
- String
傳回
Task<TModel>
適用於
BindModelAsync<TModel>(PageContext, TModel, String)
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)
類型參數
- TModel
參數
- context
- PageContext
- default
- TModel
- name
- String
傳回
Task<TModel>