Udostępnij za pośrednictwem


CompositeValueProvider.CreateAsync Metoda

Definicja

Przeciążenia

CreateAsync(ControllerContext)

Asynchronicznie tworzy obiekt CompositeValueProvider przy użyciu podanego controllerContextelementu .

CreateAsync(ActionContext, IList<IValueProviderFactory>)

Asynchronicznie tworzy obiekt CompositeValueProvider przy użyciu podanego actionContextelementu .

CreateAsync(ControllerContext)

Źródło:
CompositeValueProvider.cs
Źródło:
CompositeValueProvider.cs
Źródło:
CompositeValueProvider.cs

Asynchronicznie tworzy obiekt CompositeValueProvider przy użyciu podanego controllerContextelementu .

public:
 static System::Threading::Tasks::Task<Microsoft::AspNetCore::Mvc::ModelBinding::CompositeValueProvider ^> ^ CreateAsync(Microsoft::AspNetCore::Mvc::ControllerContext ^ controllerContext);
public static System.Threading.Tasks.Task<Microsoft.AspNetCore.Mvc.ModelBinding.CompositeValueProvider> CreateAsync (Microsoft.AspNetCore.Mvc.ControllerContext controllerContext);
static member CreateAsync : Microsoft.AspNetCore.Mvc.ControllerContext -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Mvc.ModelBinding.CompositeValueProvider>
Public Shared Function CreateAsync (controllerContext As ControllerContext) As Task(Of CompositeValueProvider)

Parametry

controllerContext
ControllerContext

Element ControllerContext skojarzony z bieżącym żądaniem.

Zwraca

Wartość Task<TResult> , która po zakończeniu asynchronicznie zwraca wartość CompositeValueProvider.

Dotyczy

CreateAsync(ActionContext, IList<IValueProviderFactory>)

Źródło:
CompositeValueProvider.cs
Źródło:
CompositeValueProvider.cs
Źródło:
CompositeValueProvider.cs

Asynchronicznie tworzy obiekt CompositeValueProvider przy użyciu podanego actionContextelementu .

public:
 static System::Threading::Tasks::Task<Microsoft::AspNetCore::Mvc::ModelBinding::CompositeValueProvider ^> ^ CreateAsync(Microsoft::AspNetCore::Mvc::ActionContext ^ actionContext, System::Collections::Generic::IList<Microsoft::AspNetCore::Mvc::ModelBinding::IValueProviderFactory ^> ^ factories);
public static System.Threading.Tasks.Task<Microsoft.AspNetCore.Mvc.ModelBinding.CompositeValueProvider> CreateAsync (Microsoft.AspNetCore.Mvc.ActionContext actionContext, System.Collections.Generic.IList<Microsoft.AspNetCore.Mvc.ModelBinding.IValueProviderFactory> factories);
static member CreateAsync : Microsoft.AspNetCore.Mvc.ActionContext * System.Collections.Generic.IList<Microsoft.AspNetCore.Mvc.ModelBinding.IValueProviderFactory> -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Mvc.ModelBinding.CompositeValueProvider>
Public Shared Function CreateAsync (actionContext As ActionContext, factories As IList(Of IValueProviderFactory)) As Task(Of CompositeValueProvider)

Parametry

actionContext
ActionContext

Element ActionContext skojarzony z bieżącym żądaniem.

factories
IList<IValueProviderFactory>

Element IValueProviderFactory , który ma zostać zastosowany do kontekstu.

Zwraca

Wartość Task<TResult> , która po zakończeniu asynchronicznie zwraca wartość CompositeValueProvider.

Dotyczy