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;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|