e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
17 lines
627 B
C#
17 lines
627 B
C#
namespace System.Web.ModelBinding {
|
|
using System;
|
|
|
|
/// <summary>
|
|
/// This attribute is the base class for all the value provider attributes that can be specified on
|
|
/// method parameters to be able to get values from alternate sources like Form, QueryString, ViewState.
|
|
/// </summary>
|
|
public abstract class ValueProviderSourceAttribute : Attribute, IValueProviderSource, IModelNameProvider {
|
|
|
|
public abstract IValueProvider GetValueProvider(ModelBindingExecutionContext modelBindingExecutionContext);
|
|
|
|
public virtual string GetModelName() {
|
|
return null;
|
|
}
|
|
}
|
|
}
|