2010-06-21 Marek Habersack <mhabersack@novell.com>
[mcs.git] / class / System.Web.Mvc / System.Web.Mvc / ParameterBindingInfo.cs
blob09334b8dbe33ba8dec0346ef0ecb04be3c11abf7
1 /* ****************************************************************************
3 * Copyright (c) Microsoft Corporation. All rights reserved.
5 * This software is subject to the Microsoft Public License (Ms-PL).
6 * A copy of the license can be found in the license.htm file included
7 * in this distribution.
9 * You must not remove this notice, or any other, from this software.
11 * ***************************************************************************/
13 namespace System.Web.Mvc {
14 using System.Collections.Generic;
16 public abstract class ParameterBindingInfo {
18 public virtual IModelBinder Binder {
19 get {
20 return null;
24 public virtual ICollection<string> Exclude {
25 get {
26 return new string[0];
30 public virtual ICollection<string> Include {
31 get {
32 return new string[0];
36 public virtual string Prefix {
37 get {
38 return null;