a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
32 lines
623 B
C#
32 lines
623 B
C#
namespace System.Web.Mvc {
|
|
using System.Collections.Generic;
|
|
|
|
public abstract class ParameterBindingInfo {
|
|
|
|
public virtual IModelBinder Binder {
|
|
get {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public virtual ICollection<string> Exclude {
|
|
get {
|
|
return new string[0];
|
|
}
|
|
}
|
|
|
|
public virtual ICollection<string> Include {
|
|
get {
|
|
return new string[0];
|
|
}
|
|
}
|
|
|
|
public virtual string Prefix {
|
|
get {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|