aspnetcore/src/Microsoft.AspNet.Mvc.ModelB.../ValueProviders/IEnumerableValueProvider.cs

10 lines
231 B
C#

using System.Collections.Generic;
namespace Microsoft.AspNet.Mvc.ModelBinding
{
public interface IEnumerableValueProvider : IValueProvider
{
IDictionary<string, string> GetKeysFromPrefix(string prefix);
}
}