Files
linux-packaging-mono/mcs/class/System.Web.Mvc3/Mvc/ValueProviderFactory.cs

8 lines
200 B
C#
Raw Normal View History

namespace System.Web.Mvc {
using System;
public abstract class ValueProviderFactory {
public abstract IValueProvider GetValueProvider(ControllerContext controllerContext);
}
}