1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
namespace System.Web.ModelBinding {
[AttributeUsage(AttributeTargets.Parameter, Inherited = false, AllowMultiple = false)]
public sealed class ViewStateAttribute : ValueProviderSourceAttribute {
public string Key {
get;
private set;
}
public ViewStateAttribute()
: this(null) {
}
public ViewStateAttribute(string key) {
Key = key;
}
public override IValueProvider GetValueProvider(ModelBindingExecutionContext modelBindingExecutionContext) {
if (modelBindingExecutionContext == null) {
throw new ArgumentNullException("modelBindingExecutionContext");
}
return new ViewStateValueProvider(modelBindingExecutionContext);
}
public override string GetModelName() {
return Key;
}
}
}
|