Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ParameterBindingInfo.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a005900cea5e6bcc205483b9094b655d077fcec3 (plain)
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
using System.Collections.Generic;

namespace System.Web.Mvc
{
    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; }
        }
    }
}