| File: ModelBinding\IValueProviderFactory.cs | Web Access |
| Project: src\aspnetcore\src\Mvc\Mvc.Abstractions\src\Microsoft.AspNetCore.Mvc.Abstractions.csproj (Microsoft.AspNetCore.Mvc.Abstractions) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.AspNetCore.Mvc.ModelBinding; /// <summary> /// A factory for creating <see cref="IValueProvider"/> instances. /// </summary> public interface IValueProviderFactory { /// <summary> /// Creates a <see cref="IValueProvider"/> with values from the current request /// and adds it to <see cref="ValueProviderFactoryContext.ValueProviders"/> list. /// </summary> /// <param name="context">The <see cref="ValueProviderFactoryContext"/>.</param> /// <returns>A <see cref="Task"/> that when completed will add an <see cref="IValueProvider"/> instance /// to <see cref="ValueProviderFactoryContext.ValueProviders"/> list if applicable.</returns> Task CreateValueProviderAsync(ValueProviderFactoryContext context); }