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

16 lines
457 B
C#
Raw Normal View History

namespace System.Web.Mvc {
using System;
public sealed class HttpFileCollectionValueProviderFactory : ValueProviderFactory {
public override IValueProvider GetValueProvider(ControllerContext controllerContext) {
if (controllerContext == null) {
throw new ArgumentNullException("controllerContext");
}
return new HttpFileCollectionValueProvider(controllerContext);
}
}
}